comparison lisp/simple.el @ 10252:85ae09b49021

(completion-reference-buffer): Initialize to nil.
author Richard M. Stallman <rms@gnu.org>
date Sun, 25 Dec 1994 22:09:46 +0000
parents 1817c5332316
children 832491972c95
comparison
equal deleted inserted replaced
10251:bf1c7dcc69db 10252:85ae09b49021
2589 2589
2590 ;; Completion mode is suitable only for specially formatted data. 2590 ;; Completion mode is suitable only for specially formatted data.
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.
2598 (defvar completion-base-size nil) 2599 (defvar completion-base-size nil)
2599 2600