Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
3362cf1d
Commit
3362cf1d
authored
Oct 28, 1996
by
David Kågedal
Browse files
* command.el (lyskom-end-of-command): Använd
lyskom-pending-commands.
parent
5bea9e9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/command.el
View file @
3362cf1d
...
...
@@ -222,7 +222,14 @@ chosen according to this"
(
if
lyskom-idle-time-flag
(
initiate-user-active
'background
nil
))
(
if
kom-inhibit-typeahead
(
discard-input
)))
(
discard-input
))
;; lyskom-pending-commands should probably be a queue or a stack.
(
when
lyskom-pending-commands
(
let
((
command
(
car
lyskom-pending-commands
)))
(
setq
lyskom-pending-commands
(
cdr
lyskom-pending-commands
))
(
if
(
symbolp
command
)
(
call-interactively
command
)
(
eval
command
)))))
(
provide
'lyskom-command
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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