diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-05-22 13:38:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-05-22 13:38:39 +0000 |
commit | f4f540b99f152204c8a3a9f61f05b5fd74376988 (patch) | |
tree | 0cd8c9832db0d896d955573737455b212f0d5c4a /lisp/emulation/viper-ex.el | |
parent | 2f3a69001f58bee112a8c4e09bd8836908ce29a8 (diff) | |
download | emacs-f4f540b99f152204c8a3a9f61f05b5fd74376988.tar.gz |
(viper-ex-work-buf, viper-ex-print-buf): Use defvar, not defconst.
Diffstat (limited to 'lisp/emulation/viper-ex.el')
-rw-r--r-- | lisp/emulation/viper-ex.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el index 7e8a5cbeb99..c29e0e26ba5 100644 --- a/lisp/emulation/viper-ex.el +++ b/lisp/emulation/viper-ex.el @@ -67,10 +67,10 @@ ;;; Variables (defconst viper-ex-work-buf-name " *ex-working-space*") -(defconst viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name)) +(defvar viper-ex-work-buf (get-buffer-create viper-ex-work-buf-name)) (defconst viper-ex-tmp-buf-name " *ex-tmp*") (defconst viper-ex-print-buf-name " *ex-print*") -(defconst viper-ex-print-buf (get-buffer-create viper-ex-print-buf-name)) +(defvar viper-ex-print-buf (get-buffer-create viper-ex-print-buf-name)) ;;; ex-commands... |