diff options
Diffstat (limited to 'lisp/obsolete')
| -rw-r--r-- | lisp/obsolete/fast-lock.el | 4 | ||||
| -rw-r--r-- | lisp/obsolete/lazy-lock.el | 2 | ||||
| -rw-r--r-- | lisp/obsolete/sym-comp.el | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el index 0f57dfd1788..7e3dd66a56a 100644 --- a/lisp/obsolete/fast-lock.el +++ b/lisp/obsolete/fast-lock.el | |||
| @@ -336,7 +336,7 @@ If nil, means information for all faces will be saved.") | |||
| 336 | With arg, turn Fast Lock mode on if and only if arg is positive and the buffer | 336 | With arg, turn Fast Lock mode on if and only if arg is positive and the buffer |
| 337 | is associated with a file. Enable it automatically in your `~/.emacs' by: | 337 | is associated with a file. Enable it automatically in your `~/.emacs' by: |
| 338 | 338 | ||
| 339 | (setq font-lock-support-mode 'fast-lock-mode) | 339 | (setq font-lock-support-mode \\='fast-lock-mode) |
| 340 | 340 | ||
| 341 | If Fast Lock mode is enabled, and the current buffer does not contain any text | 341 | If Fast Lock mode is enabled, and the current buffer does not contain any text |
| 342 | properties, any associated Font Lock cache is used if its timestamp matches the | 342 | properties, any associated Font Lock cache is used if its timestamp matches the |
| @@ -538,7 +538,7 @@ If the same file has different cache file names when edited on different | |||
| 538 | machines, e.g., on one machine the cache file name has the prefix `#home', | 538 | machines, e.g., on one machine the cache file name has the prefix `#home', |
| 539 | perhaps due to automount, try putting in your `~/.emacs' something like: | 539 | perhaps due to automount, try putting in your `~/.emacs' something like: |
| 540 | 540 | ||
| 541 | (setq directory-abbrev-alist (cons '(\"^/home/\" . \"/\") directory-abbrev-alist)) | 541 | (setq directory-abbrev-alist (cons \\='(\"^/home/\" . \"/\") directory-abbrev-alist)) |
| 542 | 542 | ||
| 543 | Emacs automagically removes the common `/tmp_mnt' automount prefix by default. | 543 | Emacs automagically removes the common `/tmp_mnt' automount prefix by default. |
| 544 | 544 | ||
diff --git a/lisp/obsolete/lazy-lock.el b/lisp/obsolete/lazy-lock.el index 885a11f7596..79afd80813f 100644 --- a/lisp/obsolete/lazy-lock.el +++ b/lisp/obsolete/lazy-lock.el | |||
| @@ -466,7 +466,7 @@ See also `lazy-lock-stealth-load'." | |||
| 466 | With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it | 466 | With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it |
| 467 | automatically in your `~/.emacs' by: | 467 | automatically in your `~/.emacs' by: |
| 468 | 468 | ||
| 469 | (setq font-lock-support-mode 'lazy-lock-mode) | 469 | (setq font-lock-support-mode \\='lazy-lock-mode) |
| 470 | 470 | ||
| 471 | For a newer font-lock support mode with similar functionality, see | 471 | For a newer font-lock support mode with similar functionality, see |
| 472 | `jit-lock-mode'. Eventually, Lazy Lock mode will be deprecated in | 472 | `jit-lock-mode'. Eventually, Lazy Lock mode will be deprecated in |
diff --git a/lisp/obsolete/sym-comp.el b/lisp/obsolete/sym-comp.el index c633bd5845b..ac67963571c 100644 --- a/lisp/obsolete/sym-comp.el +++ b/lisp/obsolete/sym-comp.el | |||
| @@ -165,9 +165,9 @@ Uses `symbol-completion-symbol-function' and | |||
| 165 | used something like this in a major mode which provides symbol | 165 | used something like this in a major mode which provides symbol |
| 166 | completion: | 166 | completion: |
| 167 | 167 | ||
| 168 | (if (featurep 'hippie-exp) | 168 | (if (featurep \\='hippie-exp) |
| 169 | (set (make-local-variable 'hippie-expand-try-functions-list) | 169 | (set (make-local-variable \\='hippie-expand-try-functions-list) |
| 170 | (cons 'symbol-completion-try-complete | 170 | (cons \\='symbol-completion-try-complete |
| 171 | hippie-expand-try-functions-list)))" | 171 | hippie-expand-try-functions-list)))" |
| 172 | (when (and symbol-completion-symbol-function | 172 | (when (and symbol-completion-symbol-function |
| 173 | symbol-completion-completions-function) | 173 | symbol-completion-completions-function) |