diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4ce37b1996a..c90df7c810a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-06-04 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * subr.el (directory-sep-char): Move from fileio.c and make a defconst. | ||
| 4 | |||
| 1 | 2010-06-04 Michael Albinus <michael.albinus@gmx.de> | 5 | 2010-06-04 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/". | 7 | * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/". |
diff --git a/lisp/subr.el b/lisp/subr.el index e7fbf31b2b7..16ba45f1c74 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1089,7 +1089,11 @@ is converted into a string by expressing it in decimal." | |||
| 1089 | (make-obsolete 'process-filter-multibyte-p nil "23.1") | 1089 | (make-obsolete 'process-filter-multibyte-p nil "23.1") |
| 1090 | (make-obsolete 'set-process-filter-multibyte nil "23.1") | 1090 | (make-obsolete 'set-process-filter-multibyte nil "23.1") |
| 1091 | 1091 | ||
| 1092 | (make-obsolete-variable 'directory-sep-char "do not use it." "21.1") | 1092 | (defconst directory-sep-char ?/ |
| 1093 | "Directory separator character for built-in functions that return file names. | ||
| 1094 | The value is always ?/.") | ||
| 1095 | (make-obsolete-variable 'directory-sep-char "do not use it, just use `/'." "21.1") | ||
| 1096 | |||
| 1093 | (make-obsolete-variable | 1097 | (make-obsolete-variable |
| 1094 | 'mode-line-inverse-video | 1098 | 'mode-line-inverse-video |
| 1095 | "use the appropriate faces instead." | 1099 | "use the appropriate faces instead." |