comparison lisp/files.el @ 112238:4f72b1e43644

Merge from emacs-23 branch.
author Glenn Morris <rgm@gnu.org>
date Sat, 15 Jan 2011 12:03:38 -0800
parents 81b6e1261c36
children cc0887b67703
comparison
equal deleted inserted replaced
112236:105ba04b561c 112238:4f72b1e43644
55 nil 55 nil
56 "Alist of abbreviations for file directories. 56 "Alist of abbreviations for file directories.
57 A list of elements of the form (FROM . TO), each meaning to replace 57 A list of elements of the form (FROM . TO), each meaning to replace
58 FROM with TO when it appears in a directory name. This replacement is 58 FROM with TO when it appears in a directory name. This replacement is
59 done when setting up the default directory of a newly visited file. 59 done when setting up the default directory of a newly visited file.
60 *Every* FROM string ought to start with \"\\\\`\". 60
61 FROM is matched against directory names anchored at the first
62 character, so it should start with a \"\\\\`\", or, if directory
63 names cannot have embedded newlines, with a \"^\".
61 64
62 FROM and TO should be equivalent names, which refer to the 65 FROM and TO should be equivalent names, which refer to the
63 same directory. Do not use `~' in the TO strings; 66 same directory. Do not use `~' in the TO strings;
64 they should be ordinary absolute directory names. 67 they should be ordinary absolute directory names.
65 68