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
d247e32d
Commit
d247e32d
authored
Nov 03, 2000
by
Stefan Monnier
Browse files
(log-edit-menu): New menu.
parent
fd1d9d98
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/log-edit.el
lisp/log-edit.el
+18
-1
No files found.
lisp/ChangeLog
View file @
d247e32d
2000-11-03 Stefan Monnier <monnier@cs.yale.edu>
* log-edit.el (log-edit-menu): New menu.
2000-11-03 Miles Bader <miles@gnu.org>
* wid-edit.el (widget-end-of-line): Reinstate, with a new
...
...
lisp/log-edit.el
View file @
d247e32d
...
...
@@ -5,7 +5,7 @@
;; Author: Stefan Monnier <monnier@cs.yale.edu>
;; Keywords: pcl-cvs cvs commit log
;; Version: $Name: $
;; Revision: $Id: log-edit.el,v 1.
8
2000/10/
24
1
1
:2
7:41 fx
Exp $
;; Revision: $Id: log-edit.el,v 1.
9
2000/10/
30
1
4
:2
8:30 monnier
Exp $
;; This file is part of GNU Emacs.
...
...
@@ -63,6 +63,23 @@
:inherit
(
if
(
boundp
'vc-log-entry-mode
)
vc-log-entry-mode
(
if
(
boundp
'vc-log-mode-map
)
vc-log-mode-map
)))
(
easy-menu-define
log-edit-menu
log-edit-mode-map
"Menu used for `log-edit-mode'."
'
(
"Log-Edit"
[
"Done"
log-edit-done
:help
"Exit log-edit and proceed with the actual action."
]
"--"
[
"Insert ChangeLog"
log-edit-insert-changelog]
[
"Add to ChangeLog"
log-edit-add-to-changelog]
"--"
[
"List files"
log-edit-show-files
:help
"Show the list of relevant files."
]
"--"
[
"Previous comment"
vc-previous-comment]
[
"Next comment"
vc-next-comment]
[
"Search comment forward"
vc-comment-search-forward]
[
"Search comment backward"
vc-comment-search-reverse]
))
(
defcustom
log-edit-confirm
'changed
"*If non-nil, `log-edit-done' will request confirmation.
If 'changed, only request confirmation if the list of files has
...
...
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