diff options
| author | Glenn Morris | 2009-03-19 06:26:04 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-03-19 06:26:04 +0000 |
| commit | c68845e0581685a01e5a6f0603bdc29f9b39c5ef (patch) | |
| tree | b154db0a600a68cc06b46cd7c67495f72f3fce27 /src | |
| parent | 33e38fa1c8d0bea02521939965bf210a3e8fff6a (diff) | |
| download | emacs-c68845e0581685a01e5a6f0603bdc29f9b39c5ef.tar.gz emacs-c68845e0581685a01e5a6f0603bdc29f9b39c5ef.zip | |
(Fsubstitute_in_file_name): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fileio.c | 5 |
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 @@ | |||
| 1 | 2009-03-19 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * fileio.c (Fsubstitute_in_file_name): Doc fix. | ||
| 4 | |||
| 1 | 2009-03-19 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-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, | |||
| 1616 | the value of that variable. The variable name should be terminated | 1616 | the value of that variable. The variable name should be terminated |
| 1617 | with a character not a letter, digit or underscore; otherwise, enclose | 1617 | with a character not a letter, digit or underscore; otherwise, enclose |
| 1618 | the entire variable name in braces. | 1618 | the entire variable name in braces. |
| 1619 | If `/~' appears, all of FILENAME through that `/' is discarded. */) | 1619 | |
| 1620 | If `/~' appears, all of FILENAME through that `/' is discarded. | ||
| 1621 | If `//' appears, everything up to and including the first of | ||
| 1622 | those `/' is discarded. */) | ||
| 1620 | (filename) | 1623 | (filename) |
| 1621 | Lisp_Object filename; | 1624 | Lisp_Object filename; |
| 1622 | { | 1625 | { |