Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
645d6219
Commit
645d6219
authored
Jun 11, 1993
by
Richard M. Stallman
Browse files
(sendmail-pre-abbrev-expand-hook):
If last-command-char is not a character, don't do the expand here.
parent
b3771493
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/mail/mailabbrev.el
lisp/mail/mailabbrev.el
+2
-1
No files found.
lisp/mail/mailabbrev.el
View file @
645d6219
...
...
@@ -460,7 +460,8 @@ characters which may be a part of the name of a mail-alias.")
;; the mail-mode-header-syntax-table.
(
set-syntax-table
mail-mode-header-syntax-table
)
(
or
(
eq
(
char-syntax
last-command-char
)
?_
)
(
or
(
not
(
integerp
last-command-char
))
(
eq
(
char-syntax
last-command-char
)
?_
)
(
let
((
pre-abbrev-expand-hook
nil
))
; That's us; don't loop.
;; Use this table so that abbrevs can have hyphens in them.
(
set-syntax-table
mail-abbrev-syntax-table
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment