diff options
| author | Markus Rost | 2003-07-19 20:44:23 +0000 |
|---|---|---|
| committer | Markus Rost | 2003-07-19 20:44:23 +0000 |
| commit | 177f7c5192efb5d15ae46f7adcd51cb2e6587b65 (patch) | |
| tree | 182e859612b68b02657ffb331c0cafcb621012ac | |
| parent | 431328cc1c09733eae4b00f2f21e85b713cc82b2 (diff) | |
| download | emacs-177f7c5192efb5d15ae46f7adcd51cb2e6587b65.tar.gz emacs-177f7c5192efb5d15ae46f7adcd51cb2e6587b65.zip | |
(artist-erase-char): Fix default value using ?\s.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/artist.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5df1a68684a..d52831ce560 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-07-19 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * textmodes/artist.el (artist-erase-char): Fix default value using | ||
| 4 | ?\s. | ||
| 5 | |||
| 1 | 2003-07-19 John Paul Wallington <jpw@gnu.org> | 6 | 2003-07-19 John Paul Wallington <jpw@gnu.org> |
| 2 | 7 | ||
| 3 | * textmodes/artist.el (artist-butlast-fn, artist-draw-sline) | 8 | * textmodes/artist.el (artist-butlast-fn, artist-draw-sline) |
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 | ||