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
573cd924
Commit
573cd924
authored
Aug 03, 1992
by
Eric S. Raymond
Browse files
*** empty log message ***
parent
cd5e3fae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
lisp/ebuff-menu.el
lisp/ebuff-menu.el
+1
-1
lisp/hexl.el
lisp/hexl.el
+5
-2
No files found.
lisp/ebuff-menu.el
View file @
573cd924
...
...
@@ -226,7 +226,7 @@ Does not execute select, save, or delete commands."
(
eq
(
key-binding
" "
)
'Electric-buffer-menu-select
)
(
eq
(
key-binding
help-key
)
'Helper-help
)
(
eq
(
key-binding
"?"
)
'Helper-describe-bindings
))
"Type C-c C-c to exit, Space to select,
C-h
for help, ? for commands"
(
substitute-command-keys
"Type C-c C-c to exit, Space to select,
\\[Helper-help]
for help, ? for commands"
)
(
substitute-command-keys
"\
Type
\\[Electric-buffer-menu-quit]
to
exit,
\
\\[Electric-buffer-menu-select]
to
select,
\
...
...
lisp/hexl.el
View file @
573cd924
...
...
@@ -67,6 +67,9 @@ and \"-de\" when dehexlfying a buffer.")
(
defvar
hexl-max-address
0
"Maximum offset into hexl buffer."
)
(
defvar
help-key
"\C-h"
"*Key used to invoke electric help."
)
(
defvar
hexl-mode-map
nil
)
;; routines
...
...
@@ -586,8 +589,8 @@ You may also type up to 3 octal digits, to insert a character with that code"
(
define-key
hexl-mode-map
"\C-e"
'hexl-end-of-line
)
(
define-key
hexl-mode-map
"\C-f"
'hexl-forward-char
)
(
if
(
not
(
eq
(
key-binding
"\C-h"
)
'help-command
))
(
define-key
hexl-mode-map
"\C-h"
'undefined
))
(
if
(
not
(
eq
(
key-binding
help-key
)
'help-command
))
(
define-key
hexl-mode-map
help-key
'undefined
))
(
define-key
hexl-mode-map
"\C-i"
'hexl-self-insert-command
)
(
define-key
hexl-mode-map
"\C-j"
'hexl-self-insert-command
)
...
...
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