aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-03-25 00:44:51 +0000
committerRichard M. Stallman2002-03-25 00:44:51 +0000
commite643ceae670107a1df04d7949e501723f81e1392 (patch)
treee780aa07697f1b6fcb8515f523e178b4aa9927de
parent35208b42393afa804063657fde8a39f5b70d4a8b (diff)
downloademacs-e643ceae670107a1df04d7949e501723f81e1392.tar.gz
emacs-e643ceae670107a1df04d7949e501723f81e1392.zip
(Quoted File Names): Minor clarifications.
-rw-r--r--lisp/ChangeLog13
-rw-r--r--man/files.texi26
2 files changed, 28 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 86235d723c2..23e7f846274 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,16 @@
12002-03-24 Richard M. Stallman <rms@gnu.org>
2
3 * mail/rmail.el (rmail-resend): Call mail-abbrev-make-syntax-table.
4
5 * progmodes/etags.el (tags-query-replace): Pass t for NOERROR
6 to query-replace-read-args.
7
8 * progmodes/compile.el (compilation-forget-errors):
9 Don't adjust compilation-parsing-end if it's nil.
10
11 * replace.el (query-replace-read-args): New optional arg NOERROR.
12 (perform-replace): Use save-window-excursion around recursive edit.
13
12002-03-24 Colin Walters <walters@verbum.org> 142002-03-24 Colin Walters <walters@verbum.org>
2 15
3 * ibuffer.el (ibuffer): If the user has `ibuffer-use-other-window' 16 * ibuffer.el (ibuffer): If the user has `ibuffer-use-other-window'
diff --git a/man/files.texi b/man/files.texi
index d119a85eb7d..1472b49c432 100644
--- a/man/files.texi
+++ b/man/files.texi
@@ -3034,19 +3034,23 @@ can refer to that file in Emacs as @samp{/:/foo:/bar}.
3034character for a user's home directory. For example, @file{/:/tmp/~hack} 3034character for a user's home directory. For example, @file{/:/tmp/~hack}
3035refers to a file whose name is @file{~hack} in directory @file{/tmp}. 3035refers to a file whose name is @file{~hack} in directory @file{/tmp}.
3036 3036
3037 Likewise, quoting with @samp{/:} is one way to enter in the minibuffer 3037 Quoting with @samp{/:} is also a way to enter in the minibuffer a
3038a file name that contains @samp{$}. However, the @samp{/:} must be at 3038file name that contains @samp{$}. In order for this to work, the
3039the beginning of the minibuffer in order to quote @samp{$}. (For 3039@samp{/:} must be at the beginning of the minibuffer contents. (You
3040another way of quoting @samp{$} in file names see @ref{File Names with 3040can also double each @samp{$}; see @ref{File Names with @samp{$}}.)
3041@samp{$}}.)
3042 3041
3043 You can also quote wildcard characters with @samp{/:}, for visiting. 3042 You can also quote wildcard characters with @samp{/:}, for visiting.
3044For example, @file{/:/tmp/foo*bar} visits the file @file{/tmp/foo*bar}. 3043For example, @file{/:/tmp/foo*bar} visits the file
3045However, in most cases you can simply type the wildcard characters for 3044@file{/tmp/foo*bar}.
3046themselves. For example, if the only file name in @file{/tmp} that 3045
3047starts with @samp{foo} and ends with @samp{bar} is @file{foo*bar}, then 3046 Another method of getting the same result is to enter
3048specifying @file{/tmp/foo*bar} will visit just @file{/tmp/foo*bar}. 3047@file{/tmp/foo[*]bar}, which is a wildcard specification that matches
3049Another way is to specify @file{/tmp/foo[*]bar}. 3048only @file{/tmp/foo*bar}. However, in many cases there is no need to
3049quote the wildcard characters because even unquoted they give the
3050right result. For example, if the only file name in @file{/tmp} that
3051starts with @samp{foo} and ends with @samp{bar} is @file{foo*bar},
3052then specifying @file{/tmp/foo*bar} will visit only
3053@file{/tmp/foo*bar}.
3050 3054
3051@node File Name Cache 3055@node File Name Cache
3052@section File Name Cache 3056@section File Name Cache