diff options
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r-- | lisp/ielm.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el index d3d7459bcbc..ec7f00a401b 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el @@ -87,7 +87,7 @@ This variable is buffer-local.") (defvar ielm-header (concat "*** Welcome to IELM version " - (substring "$Revision: 1.4 $" 11 -2) + (substring "$Revision: 1.5 $" 11 -2) " *** Type (describe-mode) for help.\n" "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n") "Message to display when IELM is started.") @@ -145,7 +145,7 @@ This variable is buffer-local.") (or ;; the buffer has been modified (not (= btick (buffer-modified-tick))) - ;; a completions buffer has been modifed or created + ;; a completions buffer has been modified or created (if cbuffer (not (= ctick (buffer-modified-tick cbuffer))) (get-buffer "*Completions*"))))) |