aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorMarkus Rost2003-07-19 20:44:23 +0000
committerMarkus Rost2003-07-19 20:44:23 +0000
commit177f7c5192efb5d15ae46f7adcd51cb2e6587b65 (patch)
tree182e859612b68b02657ffb331c0cafcb621012ac /lisp/textmodes
parent431328cc1c09733eae4b00f2f21e85b713cc82b2 (diff)
downloademacs-177f7c5192efb5d15ae46f7adcd51cb2e6587b65.tar.gz
emacs-177f7c5192efb5d15ae46f7adcd51cb2e6587b65.zip
(artist-erase-char): Fix default value using ?\s.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/artist.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/artist.el b/lisp/textmodes/artist.el
index f762ec97e9e..b973290725c 100644
--- a/lisp/textmodes/artist.el
+++ b/lisp/textmodes/artist.el
@@ -446,7 +446,7 @@ strangely.")
446 "Char to use when filling.") 446 "Char to use when filling.")
447(make-variable-buffer-local 'artist-fill-char) 447(make-variable-buffer-local 'artist-fill-char)
448 448
449(defvar artist-erase-char ?\ 449(defvar artist-erase-char ?\s
450 "Char to use when erasing.") 450 "Char to use when erasing.")
451(make-variable-buffer-local 'artist-erase-char) 451(make-variable-buffer-local 'artist-erase-char)
452 452