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
e68e61b5
Commit
e68e61b5
authored
Jan 12, 1998
by
Kenichi Handa
Browse files
Change "?\C-\ " to "?\C- " because "\ " is changed
to standing for nothing in lread.c (read_escape).
parent
6e24ad22
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
lisp/bindings.el
lisp/bindings.el
+2
-2
lisp/calendar/calendar.el
lisp/calendar/calendar.el
+1
-1
lisp/international/kkc.el
lisp/international/kkc.el
+1
-1
lisp/international/quail.el
lisp/international/quail.el
+1
-1
No files found.
lisp/bindings.el
View file @
e68e61b5
...
...
@@ -372,10 +372,10 @@ for \\[find-tag] (which see)."
(
define-key
global-map
"\C-@"
'set-mark-command
)
;; Many people are used to typing C-SPC and getting C-@.
(
define-key
global-map
[?\C-
\
]
'set-mark-command
)
(
define-key
global-map
[?\C-
]
'set-mark-command
)
(
define-key
ctl-x-map
"\C-x"
'exchange-point-and-mark
)
(
define-key
ctl-x-map
"\C-@"
'pop-global-mark
)
(
define-key
ctl-x-map
[?\C-
\
]
'pop-global-mark
)
(
define-key
ctl-x-map
[?\C-
]
'pop-global-mark
)
(
define-key
global-map
"\C-n"
'next-line
)
(
define-key
global-map
"\C-p"
'previous-line
)
...
...
lisp/calendar/calendar.el
View file @
e68e61b5
...
...
@@ -1893,7 +1893,7 @@ the inserted text. Value is always t."
(
define-key
calendar-mode-map
"\e>"
'calendar-end-of-year
)
(
define-key
calendar-mode-map
"\C-@"
'calendar-set-mark
)
;; Many people are used to typing C-SPC and getting C-@.
(
define-key
calendar-mode-map
[?\C-
\
]
'calendar-set-mark
)
(
define-key
calendar-mode-map
[?\C-
]
'calendar-set-mark
)
(
define-key
calendar-mode-map
"\C-x\C-x"
'calendar-exchange-point-and-mark
)
(
define-key
calendar-mode-map
"\e="
'calendar-count-days-region
)
(
define-key
calendar-mode-map
"gd"
'calendar-goto-date
)
...
...
lisp/international/kkc.el
View file @
e68e61b5
...
...
@@ -96,7 +96,7 @@ This string is shown at mode line when users are in KKC mode.")
(
define-key
map
"H"
'kkc-hiragana
)
(
define-key
map
"l"
'kkc-show-conversion-list-or-next-group
)
(
define-key
map
"L"
'kkc-show-conversion-list-or-prev-group
)
(
define-key
map
[?\C-
\
]
'kkc-first-char-only
)
(
define-key
map
[?\C-
]
'kkc-first-char-only
)
(
define-key
map
[delete]
'kkc-cancel
)
(
define-key
map
[return]
'kkc-terminate
)
(
let
((
meta-map
(
make-sparse-keymap
)))
...
...
lisp/international/quail.el
View file @
e68e61b5
...
...
@@ -302,7 +302,7 @@ LEIM is available from the same ftp directory as Emacs."))
(
define-key
map
"\C-h"
'quail-translation-help
)
;;; This interferes with handling of escape sequences on non-X terminals.
;;; (define-key map "\e" '(keymap (t . quail-execute-non-quail-command)))
(
define-key
map
[?\C-
\
]
'quail-select-current
)
(
define-key
map
[?\C-
]
'quail-select-current
)
(
define-key
map
[tab]
'quail-completion
)
(
define-key
map
[delete]
'quail-delete-last-char
)
(
define-key
map
[backspace]
'quail-delete-last-char
)
...
...
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