diff options
| author | Richard M. Stallman | 1994-12-25 22:09:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-12-25 22:09:46 +0000 |
| commit | 95ab9b4526a80e5d2f4f616002977a53deeec83c (patch) | |
| tree | f1f765cc4bcf315adc1ed905f29c37a5a1ff3b8c | |
| parent | f8b581fa239ace91c181a25d94a07c779afa617f (diff) | |
| download | emacs-95ab9b4526a80e5d2f4f616002977a53deeec83c.tar.gz emacs-95ab9b4526a80e5d2f4f616002977a53deeec83c.zip | |
(completion-reference-buffer): Initialize to nil.
| -rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 06f1735dbce..125a64a9061 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -2591,7 +2591,8 @@ it were the arg to `interactive' (which see) to interactively read the value." | |||
| 2591 | (put 'completion-list-mode 'mode-class 'special) | 2591 | (put 'completion-list-mode 'mode-class 'special) |
| 2592 | 2592 | ||
| 2593 | ;; Record the buffer that was current when the completion list was requested. | 2593 | ;; Record the buffer that was current when the completion list was requested. |
| 2594 | (defvar completion-reference-buffer) | 2594 | ;; Initial value is nil to avoid some compiler warnings. |
| 2595 | (defvar completion-reference-buffer nil) | ||
| 2595 | 2596 | ||
| 2596 | ;; This records the length of the text at the beginning of the buffer | 2597 | ;; This records the length of the text at the beginning of the buffer |
| 2597 | ;; which was not included in the completion. | 2598 | ;; which was not included in the completion. |