Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lyskom-elisp-client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lyskom-elisp-client
lyskom-elisp-client
Commits
4d824e39
Commit
4d824e39
authored
Jun 1, 1993
by
Linus Tolke
Browse files
Options
Downloads
Patches
Plain Diff
map-keymap usage fixed. unread-command-event used rather than fboundp(map-keymap)
parent
b8634892
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/ChangeLog
+11
-0
11 additions, 0 deletions
src/ChangeLog
src/completing-read.el
+2
-2
2 additions, 2 deletions
src/completing-read.el
src/edit-text.el
+2
-2
2 additions, 2 deletions
src/edit-text.el
src/lyskom-rest.el
+1
-1
1 addition, 1 deletion
src/lyskom-rest.el
with
16 additions
and
5 deletions
src/ChangeLog
+
11
−
0
View file @
4d824e39
No preview for this file type
This diff is collapsed.
Click to expand it.
src/completing-read.el
+
2
−
2
View file @
4d824e39
...
...
@@ -292,7 +292,7 @@ When C-G is pressed then lyskom-end-of-command is evaled."
(
and
completion-buffer
(
get-buffer-window
completion-buffer
)))
(
use-local-map
lyskom-completing-map
)
(
if
(
f
boundp
'
map-keymap
)
;Special for lucid-emacs.
(
if
(
boundp
'
unread-command-event
)
;Special for lucid-emacs.
(
setq
unread-command-event
last-command-event
)
(
setq
unread-command-char
last-command-char
)))
...
...
@@ -417,7 +417,7 @@ parst matching ([^)]) in string and alist are disgarded."
((
fboundp
'map-keymap
)
;lucid-emacs' way of doing things.
(
map-keymap
(
function
(
lambda
(
keydesc
binding
)
(
define-key
lyskom-initial-completing-map
keydesc
(
define-key
lyskom-initial-completing-map
(
vector
keydesc
)
'lyskom-hack-minibuf
)))
global-map
))
((
string-match
"^19"
emacs-version
)
...
...
This diff is collapsed.
Click to expand it.
src/edit-text.el
+
2
−
2
View file @
4d824e39
...
...
@@ -340,7 +340,7 @@ Entry to this mode runs lyskom-edit-mode-hook."
(
defun
kom-edit-insert-digit-text
()
(
interactive
)
(
if
(
f
boundp
'
map-keymap
)
;Special for lucid-emacs
(
if
(
boundp
'
unread-command-event
)
;Special for lucid-emacs
(
setq
unread-command-event
last-command-event
)
(
setq
unread-command-char
last-command-char
))
(
call-interactively
'kom-edit-insert-text
nil
))
...
...
@@ -744,7 +744,7 @@ BUG: does not descend in the maps."
(
map-keymap
(
function
(
lambda
(
event
function
)
(
define-key
map
event
function
)))
(
define-key
map
(
vector
event
)
function
)))
newmap
))
((
and
(
string-match
"^19"
emacs-version
)
(
arrayp
(
car
(
cdr
newmap
))))
...
...
This diff is collapsed.
Click to expand it.
src/lyskom-rest.el
+
1
−
1
View file @
4d824e39
No preview for this file type
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment