From 99b3bc616bf09f72d91f11f85c41cd08f52ca5bf Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 19 Nov 2001 23:45:15 +0000 Subject: [PATCH] (picture-vertical-step) (picture-horizontal-step): Don't use defconst for variables. --- lisp/textmodes/picture.el | 4 ++-- 1 file 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) -- 2.39.2