diff options
| -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 | ||