From: ueno Date: Tue, 7 Dec 2004 05:11:10 +0000 (+0000) Subject: (riece-log-encode-file-name): Do not convert ".". X-Git-Tag: riece-1_0_7~122 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=80f24da1d6833cd39ba68db1687905f72251232f;p=elisp%2Friece.git (riece-log-encode-file-name): Do not convert ".". --- diff --git a/lisp/riece-log.el b/lisp/riece-log.el index f9c9fe3..f511d70 100644 --- a/lisp/riece-log.el +++ b/lisp/riece-log.el @@ -125,7 +125,7 @@ If integer, flash back only this line numbers. t means all lines." (encode-coding-string file-name riece-log-file-name-coding-system))) (let ((index 0)) - (while (string-match "[^-0-9A-Za-z=_\x80-\xFF]" file-name index) + (while (string-match "[^-0-9A-Za-z=_.\x80-\xFF]" file-name index) (setq file-name (replace-match (format "=%02X" (aref file-name (match-beginning 0)))