Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
98a8938c
Commit
98a8938c
authored
Aug 06, 2001
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(tool-bar-add-item-from-menu): Handle
old-style menu definitions.
parent
6228c05b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
6 deletions
+21
-6
lisp/ChangeLog
lisp/ChangeLog
+8
-3
lisp/toolbar/tool-bar.el
lisp/toolbar/tool-bar.el
+9
-3
src/ChangeLog
src/ChangeLog
+4
-0
No files found.
lisp/ChangeLog
View file @
98a8938c
2001-08-06 Gerd Moellmann <gerd@gnu.org>
* toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle
old-style menu definitions.
2001-08-06 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/page.el,
textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
*
textmodes/text-mode.el, textmodes/two-column.el: Keywords added.
* play/studly.el, mail/unrmail.el, emacs-lisp/lucid.el,
emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
add-log.el, faces.el, mail/sc.el:
s
pecify FSF as Maintainer.
*
emulation/pc-mode.el, diff.el, textmodes/fill.el, abbrev.el,
*
add-log.el, faces.el, mail/sc.el:
S
pecify FSF as Maintainer.
2001-08-05 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
...
...
lisp/toolbar/tool-bar.el
View file @
98a8938c
;;; tool-bar.el --- setting up the tool bar
;;
;; Copyright (C) 2000 Free Software Foundation, Inc.
;; Copyright (C) 2000
, 2001
Free Software Foundation, Inc.
;;
;; Author: Dave Love <fx@gnu.org>
;; Keywords: mouse frames
...
...
@@ -164,8 +164,14 @@ function."
(
setq
submap
(
eval
submap
)))
(
unless
(
image-mask-p
image
)
(
setq
image
(
append
image
'
(
:mask
heuristic
))))
(
define-key-after
tool-bar-map
(
vector
key
)
(
append
(
cdr
(
assq
key
(
cdr
submap
)))
(
list
:image
image
)
props
)))))
(
let
((
defn
(
assq
key
(
cdr
submap
))))
(
if
(
eq
(
cadr
defn
)
'menu-item
)
(
define-key-after
tool-bar-map
(
vector
key
)
(
append
(
cdr
defn
)
(
list
:image
image
)
props
))
(
setq
defn
(
cdr
defn
))
(
define-key-after
tool-bar-map
(
vector
key
)
(
append
`
(
menu-item
,
(
car
defn
)
,
(
cddr
defn
))
(
list
:image
image
)
props
)))))))
;;; Set up some global items. Additions/deletions up for grabs.
...
...
src/ChangeLog
View file @
98a8938c
2001-08-06 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* alloc.c (init_stack): Remove declaration.
2001-08-03 Gerd Moellmann <gerd@gnu.org>
* keyboard.c (read_key_sequence): Check that key is an integer
...
...
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