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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
0ea6ae0a
Commit
0ea6ae0a
authored
Nov 16, 2004
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fmap_keymap): New arg SORT-FIRST. Use
map-keymap-internal to implement that.
parent
6df71429
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
src/keymap.c
src/keymap.c
+8
-4
No files found.
src/keymap.c
View file @
0ea6ae0a
...
...
@@ -728,19 +728,23 @@ map_keymap_call (key, val, fun, dummy)
call2
(
fun
,
key
,
val
);
}
DEFUN
(
"map-keymap"
,
Fmap_keymap
,
Smap_keymap
,
2
,
2
,
0
,
DEFUN
(
"map-keymap"
,
Fmap_keymap
,
Smap_keymap
,
2
,
3
,
0
,
doc
:
/* Call FUNCTION for every binding in KEYMAP.
FUNCTION is called with two arguments: the event and its binding.
If KEYMAP has a parent, the parent's bindings are included as well.
This works recursively: if the parent has itself a parent, then the
grandparent's bindings are also included and so on. */
)
(
function
,
keymap
)
Lisp_Object
function
,
keymap
;
grandparent's bindings are also included and so on.
usage: (map-keymap FUNCTION KEYMAP) */
)
(
function
,
keymap
,
sort_first
)
Lisp_Object
function
,
keymap
,
sort_first
;
{
if
(
INTEGERP
(
function
))
/* We have to stop integers early since map_keymap gives them special
significance. */
Fsignal
(
Qinvalid_function
,
Fcons
(
function
,
Qnil
));
if
(
!
NILP
(
sort_first
))
return
call3
(
intern
(
"map-keymap-internal"
),
function
,
keymap
,
Qt
);
map_keymap
(
keymap
,
map_keymap_call
,
function
,
NULL
,
1
);
return
Qnil
;
}
...
...
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