diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-02-23 16:17:57 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-02-23 16:17:57 +0000 |
commit | 932c309e302c184696d78c94cf93f994dc3f2f0a (patch) | |
tree | 6ad91483c377b9f425f0ec2fc501026bec3a70c7 /lisp/hi-lock.el | |
parent | 033ae89cf2bed96e53dcf888f10a103f710eb054 (diff) | |
download | emacs-932c309e302c184696d78c94cf93f994dc3f2f0a.tar.gz emacs-932c309e302c184696d78c94cf93f994dc3f2f0a.tar.bz2 emacs-932c309e302c184696d78c94cf93f994dc3f2f0a.zip |
(hi-lock-unface-buffer): Use nil rather than t for
predicate passed to completing-read.
Diffstat (limited to 'lisp/hi-lock.el')
-rw-r--r-- | lisp/hi-lock.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hi-lock.el b/lisp/hi-lock.el index 20961226cb5..610a217916f 100644 --- a/lisp/hi-lock.el +++ b/lisp/hi-lock.el @@ -420,7 +420,7 @@ interactive functions. \(See `hi-lock-interactive-patterns'.\) (error "No highlighting to remove")) (list (completing-read "Regexp to unhighlight: " - hi-lock-interactive-patterns t t + hi-lock-interactive-patterns nil t (car (car hi-lock-interactive-patterns)) (cons 'history-list 1)))))) (let ((keyword (assoc regexp hi-lock-interactive-patterns))) |