diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-19 23:45:15 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-19 23:45:15 +0000 |
commit | 99b3bc616bf09f72d91f11f85c41cd08f52ca5bf (patch) | |
tree | 9c35db407596a1d8144d4adc9283212221778917 | |
parent | 5829a569ec33f4d6a400eecdc823d3221dc8ec58 (diff) | |
download | emacs-99b3bc616bf09f72d91f11f85c41cd08f52ca5bf.tar.gz emacs-99b3bc616bf09f72d91f11f85c41cd08f52ca5bf.tar.bz2 emacs-99b3bc616bf09f72d91f11f85c41cd08f52ca5bf.zip |
(picture-vertical-step)
(picture-horizontal-step): Don't use defconst for variables.
-rw-r--r-- | lisp/textmodes/picture.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index 4ed09fd1ff2..7e36fc58ec3 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -130,10 +130,10 @@ With argument, move that many lines." (if (> current-column picture-desired-column) (forward-char -1)))) -(defconst picture-vertical-step 0 +(defvar picture-vertical-step 0 "Amount to move vertically after text character in Picture mode.") -(defconst picture-horizontal-step 1 +(defvar picture-horizontal-step 1 "Amount to move horizontally after text character in Picture mode.") (defun picture-move-up (arg) |