diff options
| author | Richard M. Stallman | 1995-10-31 02:08:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-10-31 02:08:29 +0000 |
| commit | 1b124db4a5e0a90143b5a8d3fa9cfb17bdbbd975 (patch) | |
| tree | 07309a9b42dd5ca7fe6f18bb36e50b047d4b89c3 | |
| parent | bfc1cad7d837d06b1a75dec3165c2f76bff86fcf (diff) | |
| download | emacs-1b124db4a5e0a90143b5a8d3fa9cfb17bdbbd975.tar.gz emacs-1b124db4a5e0a90143b5a8d3fa9cfb17bdbbd975.zip | |
(mail-abbrev-syntax-table): Fix initialization.
| -rw-r--r-- | lisp/mail/mailabbrev.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/mailabbrev.el b/lisp/mail/mailabbrev.el index 5ff2f3cbaca..1715e7fc1c0 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el | |||
| @@ -374,7 +374,8 @@ non-address headers.") | |||
| 374 | (function (lambda (key value) | 374 | (function (lambda (key value) |
| 375 | (if (equal value _) | 375 | (if (equal value _) |
| 376 | (set-char-table-range tab key w)))) | 376 | (set-char-table-range tab key w)))) |
| 377 | tab)) | 377 | tab) |
| 378 | tab) | ||
| 378 | "The syntax-table used for abbrev-expansion purposes. | 379 | "The syntax-table used for abbrev-expansion purposes. |
| 379 | This is not actually made the current syntax table of the buffer, but | 380 | This is not actually made the current syntax table of the buffer, but |
| 380 | simply controls the set of characters which may be a part of the name | 381 | simply controls the set of characters which may be a part of the name |