diff options
| author | Dmitry Antipov | 2013-08-06 20:33:14 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-08-06 20:33:14 +0400 |
| commit | ed4fd9c52765d5f0aa411eecd563143c38d547ba (patch) | |
| tree | 54547c91f2e5abdf08e8f917ba50e03ad338d31e | |
| parent | 2878ba7ef3225a7946c72ef6346467f35c453347 (diff) | |
| download | emacs-ed4fd9c52765d5f0aa411eecd563143c38d547ba.tar.gz emacs-ed4fd9c52765d5f0aa411eecd563143c38d547ba.zip | |
* lisp/files.el (cache-long-line-scans): Make
obsolete alias to `cache-long-scans'.
* etc/NEWS: Mention `cache-long-scans'.
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/files.el | 4 |
4 files changed, 16 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 2d204f326b2..85a04f87f57 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | * NEWS: Mention `cache-long-scans'. | ||
| 4 | |||
| 1 | 2013-08-05 Juanma Barranquero <lekktu@gmail.com> | 5 | 2013-08-05 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * tutorials/TUTORIAL.es: Fix typo (bug#15027). | 7 | * tutorials/TUTORIAL.es: Fix typo (bug#15027). |
| @@ -54,6 +54,10 @@ pkg-config is required to find ImageMagick libraries. | |||
| 54 | ** Key ? also describes prefix bindings like C-h. | 54 | ** Key ? also describes prefix bindings like C-h. |
| 55 | 55 | ||
| 56 | +++ | 56 | +++ |
| 57 | ** `cache-long-line-scans' has been renamed to `cache-long-scans' | ||
| 58 | because it affects caching of paragraph scanning results as well. | ||
| 59 | |||
| 60 | +++ | ||
| 57 | ** `apropos-variable' is now `apropos-user-option' | 61 | ** `apropos-variable' is now `apropos-user-option' |
| 58 | `apropos-user-option' shows all user options while `apropos-variable' | 62 | `apropos-user-option' shows all user options while `apropos-variable' |
| 59 | shows all variables. When called with a universal prefix argument, | 63 | shows all variables. When called with a universal prefix argument, |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0843ca2398a..5f243b82e04 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | * files.el (cache-long-line-scans): Make | ||
| 4 | obsolete alias to `cache-long-scans'. | ||
| 5 | |||
| 1 | 2013-08-06 Juanma Barranquero <lekktu@gmail.com> | 6 | 2013-08-06 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * frameset.el (frameset, frameset-filter-alist) | 8 | * frameset.el (frameset, frameset-filter-alist) |
diff --git a/lisp/files.el b/lisp/files.el index 526c535450b..efd89605b1b 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -6690,7 +6690,9 @@ based on existing mode bits, as in \"og+rX-w\"." | |||
| 6690 | (string-to-number value 8) | 6690 | (string-to-number value 8) |
| 6691 | (file-modes-symbolic-to-number value modes))))) | 6691 | (file-modes-symbolic-to-number value modes))))) |
| 6692 | 6692 | ||
| 6693 | 6693 | (define-obsolete-variable-alias 'cache-long-line-scans | |
| 6694 | 'cache-long-scans "24.4") | ||
| 6695 | |||
| 6694 | ;; Trashcan handling. | 6696 | ;; Trashcan handling. |
| 6695 | (defcustom trash-directory nil | 6697 | (defcustom trash-directory nil |
| 6696 | "Directory for `move-file-to-trash' to move files and directories to. | 6698 | "Directory for `move-file-to-trash' to move files and directories to. |