diff options
| author | Richard M. Stallman | 1993-07-01 20:25:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-01 20:25:42 +0000 |
| commit | 94142e7881f7d0bbd20468eb280c747791688ccb (patch) | |
| tree | 6de39c8cc4edc51baead2f9002a26232fc028e95 | |
| parent | c77a81cf65069ecd8749437b46abc53a304fc917 (diff) | |
| download | emacs-94142e7881f7d0bbd20468eb280c747791688ccb.tar.gz emacs-94142e7881f7d0bbd20468eb280c747791688ccb.zip | |
(build-mail-abbrevs): Do substitute-in-file-name on the abbrev, for `source'.
| -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 2768da15337..b2e7429147c 100644 --- a/lisp/mail/mailabbrev.el +++ b/lisp/mail/mailabbrev.el | |||
| @@ -202,7 +202,8 @@ no aliases, which is represented by this being a table with no entries.)") | |||
| 202 | (progn | 202 | (progn |
| 203 | (end-of-line) | 203 | (end-of-line) |
| 204 | (build-mail-abbrevs | 204 | (build-mail-abbrevs |
| 205 | (buffer-substring (match-beginning 1) (match-end 1)) t)) | 205 | (substitute-in-file-name |
| 206 | (buffer-substring (match-beginning 1) (match-end 1)) t))) | ||
| 206 | (re-search-forward "[ \t]+\\([^ \t\n]+\\)") | 207 | (re-search-forward "[ \t]+\\([^ \t\n]+\\)") |
| 207 | (let* ((name (buffer-substring | 208 | (let* ((name (buffer-substring |
| 208 | (match-beginning 1) (match-end 1))) | 209 | (match-beginning 1) (match-end 1))) |