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
1fb7ce77
Commit
1fb7ce77
authored
Oct 10, 2005
by
Richard M. Stallman
Browse files
(flyspell-check-word-p):
If unread-command-events is non-empty, don't call sit-for.
parent
9bab4985
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/textmodes/flyspell.el
lisp/textmodes/flyspell.el
+2
-1
No files found.
lisp/ChangeLog
View file @
1fb7ce77
2005-10-10 Kenichi Handa <handa@m17n.org>
* textmodes/flyspell.el (flyspell-check-word-p):
If unread-command-events is non-empty, don't call sit-for.
2005-10-09 Richard M. Stallman <rms@gnu.org>
* font-lock.el (font-lock-syntactic-keywords)
...
...
lisp/textmodes/flyspell.el
View file @
1fb7ce77
...
...
@@ -772,7 +772,8 @@ Mostly we check word delimiters."
((
get
this-command
'flyspell-delayed
)
;; the current command is not delayed, that
;; is that we must check the word now
(
sit-for
flyspell-delay
))
(
and
(
not
unread-command-events
)
(
sit-for
flyspell-delay
)))
(
t
t
)))
(
t
t
)))
...
...
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