aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2009-03-19 06:26:04 +0000
committerGlenn Morris2009-03-19 06:26:04 +0000
commitc68845e0581685a01e5a6f0603bdc29f9b39c5ef (patch)
treeb154db0a600a68cc06b46cd7c67495f72f3fce27 /src
parent33e38fa1c8d0bea02521939965bf210a3e8fff6a (diff)
downloademacs-c68845e0581685a01e5a6f0603bdc29f9b39c5ef.tar.gz
emacs-c68845e0581685a01e5a6f0603bdc29f9b39c5ef.zip
(Fsubstitute_in_file_name): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fileio.c5
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 674b100c338..33be1d20ea4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12009-03-19 Glenn Morris <rgm@gnu.org>
2
3 * fileio.c (Fsubstitute_in_file_name): Doc fix.
4
12009-03-19 Chong Yidong <cyd@stupidchicken.com> 52009-03-19 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694). 7 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
diff --git a/src/fileio.c b/src/fileio.c
index ab06e4e5c87..ae64be4ba03 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -1616,7 +1616,10 @@ DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1616the value of that variable. The variable name should be terminated 1616the value of that variable. The variable name should be terminated
1617with a character not a letter, digit or underscore; otherwise, enclose 1617with a character not a letter, digit or underscore; otherwise, enclose
1618the entire variable name in braces. 1618the entire variable name in braces.
1619If `/~' appears, all of FILENAME through that `/' is discarded. */) 1619
1620If `/~' appears, all of FILENAME through that `/' is discarded.
1621If `//' appears, everything up to and including the first of
1622those `/' is discarded. */)
1620 (filename) 1623 (filename)
1621 Lisp_Object filename; 1624 Lisp_Object filename;
1622{ 1625{