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
36942205
Commit
36942205
authored
Aug 14, 2006
by
Jan Djärv
Browse files
* term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
read only.
parent
e71cb549
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/term/x-win.el
lisp/term/x-win.el
+3
-2
No files found.
lisp/ChangeLog
View file @
36942205
2006-08-14 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* term/x-win.el (menu-bar-edit-menu): Disable paste if buffer is
read only.
2006-08-13 Romain Francoise <romain@orebokech.com>
* cus-theme.el (customize-create-theme)
...
...
lisp/term/x-win.el
View file @
36942205
...
...
@@ -2513,8 +2513,9 @@ order until succeed.")
(yank)))
(define-key menu-bar-edit-menu [paste]
(cons "
Paste
" (cons "
Paste
text
from
clipboard
or
kill
ring
"
'x-clipboard-yank
)))
'(menu-item "
Paste
" x-clipboard-yank
:enable (not buffer-read-only)
:help "
Paste
(
yank
)
text
most
recently
cut/copied
"
))
;; Initiate drag and drop
(
add-hook
'after-make-frame-functions
'x-dnd-init-frame
)
...
...
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