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
84932bf6
Commit
84932bf6
authored
Nov 15, 2001
by
Stefan Monnier
Browse files
(menu-bar-edit-menu) <copy>: Put an explicit key binding.
parent
16a2f75a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
lisp/ChangeLog
lisp/ChangeLog
+9
-5
lisp/menu-bar.el
lisp/menu-bar.el
+2
-1
No files found.
lisp/ChangeLog
View file @
84932bf6
2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
* menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
2001-11-15 Richard M. Stallman <rms@gnu.org>
* dired.el (dired-undo): Display a message to explain
...
...
@@ -5,11 +9,11 @@
2001-11-15 David Kastrup <David.Kastrup@t-online.de>
* mouse-drag.el
:
(mouse-drag-throw) Push back non-drag events
into `unread-command-events' instead of trying keymap
lookups ourselves. This makes mouse-clicks do the right
thing even when keymaps of overlays are involved.
(mouse-drag-drag) Likewise.
* mouse-drag.el (mouse-drag-throw)
:
Push back non-drag events
into `unread-command-events' instead of trying keymap
lookups ourselves. This makes mouse-clicks do the right
thing even when keymaps of overlays are involved.
(mouse-drag-drag)
:
Likewise.
2001-11-15 Andreas Schwab <schwab@suse.de>
...
...
lisp/menu-bar.el
View file @
84932bf6
...
...
@@ -407,7 +407,8 @@ A large number or nil slows down menu responsiveness."
(
define-key
menu-bar-edit-menu
[copy]
'
(
menu-item
"Copy"
menu-bar-kill-ring-save
:enable
mark-active
:help
"Copy text in region between mark and current position"
))
:help
"Copy text in region between mark and current position"
:keys
"\\[kill-ring-save]"
))
(
define-key
menu-bar-edit-menu
[cut]
'
(
menu-item
"Cut"
kill-region
:enable
(
and
mark-active
(
not
buffer-read-only
))
...
...
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