diff options
| author | Richard M. Stallman | 1997-04-15 07:48:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-04-15 07:48:25 +0000 |
| commit | 4f8f7f9f73bcb7872c8079ca1c884724b030e752 (patch) | |
| tree | a90f36c3c6907143dc6af43af91f8a2dc9b077f9 | |
| parent | 21f3d1d389c4e37dc2323062082b7c332d2aa021 (diff) | |
| download | emacs-4f8f7f9f73bcb7872c8079ca1c884724b030e752.tar.gz emacs-4f8f7f9f73bcb7872c8079ca1c884724b030e752.zip | |
(overwrite-mode-binary, overwrite-mode-textual): Use defvar.
| -rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 7d45abc183b..0f2086a4e51 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -2639,9 +2639,9 @@ The variable `selective-display' has a separate value for each buffer." | |||
| 2639 | (prin1 selective-display t) | 2639 | (prin1 selective-display t) |
| 2640 | (princ "." t)) | 2640 | (princ "." t)) |
| 2641 | 2641 | ||
| 2642 | (defconst overwrite-mode-textual " Ovwrt" | 2642 | (defvar overwrite-mode-textual " Ovwrt" |
| 2643 | "The string displayed in the mode line when in overwrite mode.") | 2643 | "The string displayed in the mode line when in overwrite mode.") |
| 2644 | (defconst overwrite-mode-binary " Bin Ovwrt" | 2644 | (defvar overwrite-mode-binary " Bin Ovwrt" |
| 2645 | "The string displayed in the mode line when in binary overwrite mode.") | 2645 | "The string displayed in the mode line when in binary overwrite mode.") |
| 2646 | 2646 | ||
| 2647 | (defun overwrite-mode (arg) | 2647 | (defun overwrite-mode (arg) |