aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/files.texi8
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 399c07d13f5..4302da5aa27 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12010-09-05 Alexander Klimov <alserkli@inbox.ru> (tiny change)
2
3 * files.texi (Directory Names): Use \` rather than ^.
4
12010-08-22 Chong Yidong <cyd@stupidchicken.com> 52010-08-22 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * modes.texi (Defining Minor Modes): Doc fix (Bug#6880). 7 * modes.texi (Defining Minor Modes): Doc fix (Bug#6880).
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index abdd2814b56..23fd2376a57 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -1933,7 +1933,7 @@ The variable @code{directory-abbrev-alist} contains an alist of
1933abbreviations to use for file directories. Each element has the form 1933abbreviations to use for file directories. Each element has the form
1934@code{(@var{from} . @var{to})}, and says to replace @var{from} with 1934@code{(@var{from} . @var{to})}, and says to replace @var{from} with
1935@var{to} when it appears in a directory name. The @var{from} string is 1935@var{to} when it appears in a directory name. The @var{from} string is
1936actually a regular expression; it should always start with @samp{^}. 1936actually a regular expression; it should always start with @samp{\`}.
1937The @var{to} string should be an ordinary absolute directory name. Do 1937The @var{to} string should be an ordinary absolute directory name. Do
1938not use @samp{~} to stand for a home directory in that string. The 1938not use @samp{~} to stand for a home directory in that string. The
1939function @code{abbreviate-file-name} performs these substitutions. 1939function @code{abbreviate-file-name} performs these substitutions.
@@ -1946,9 +1946,9 @@ and so on are normally accessed through symbolic links named @file{/fsf}
1946and so on. 1946and so on.
1947 1947
1948@example 1948@example
1949(("^/home/fsf" . "/fsf") 1949(("\\`/home/fsf" . "/fsf")
1950 ("^/home/gp" . "/gp") 1950 ("\\`/home/gp" . "/gp")
1951 ("^/home/gd" . "/gd")) 1951 ("\\`/home/gd" . "/gd"))
1952@end example 1952@end example
1953@end defopt 1953@end defopt
1954 1954