209
|
1 ;;; x-toolbar.el -- Runtime initialization of XEmacs toolbar
|
|
2
|
|
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1994 Andy Piper <andyp@parallax.demon.co.uk>
|
|
5 ;; Copyright (C) 1995 Board of Trustees, University of Illinois
|
|
6 ;; Copyright (C) 1996 Ben Wing <wing@666.com>
|
|
7
|
|
8 ;; Maintainer: XEmacs development team
|
|
9 ;; Keywords: frames, dumped
|
|
10
|
|
11 ;; This file is part of XEmacs.
|
|
12
|
|
13 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
14 ;; under the terms of the GNU General Public License as published by
|
|
15 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
16 ;; any later version.
|
|
17
|
|
18 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
21 ;; General Public License for more details.
|
|
22
|
|
23 ;; You should have received a copy of the GNU General Public License
|
|
24 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
26 ;; Boston, MA 02111-1307, USA.
|
|
27
|
|
28 ;;; Synched up: Not in FSF
|
|
29
|
|
30 ;;; Commentary:
|
|
31
|
|
32 ;; This file is dumped with XEmacs (when X and toolbar support is compiled in).
|
|
33
|
|
34 ;; Miscellaneous toolbar functions, useful for users to redefine, in
|
|
35 ;; order to get different behaviour.
|
|
36
|
|
37 ;;; Code:
|
|
38
|
219
|
39 ;; Suppress warning message from bytecompiler
|
209
|
40 (eval-when-compile
|
219
|
41 (defvar pending-delete))
|
209
|
42
|
|
43 (defgroup toolbar nil
|
|
44 "Configure XEmacs Toolbar functions and properties"
|
|
45 :group 'environment)
|
|
46
|
|
47
|
|
48 (defun toolbar-not-configured ()
|
|
49 (ding)
|
|
50 (message "Configure the item via `M-x customize RET toolbar RET'"))
|
|
51
|
|
52 (defcustom toolbar-open-function 'find-file
|
|
53 "*Function to call when the open icon is selected."
|
|
54 :type '(radio (function-item find-file)
|
|
55 (function :tag "Other"))
|
|
56 :group 'toolbar)
|
|
57
|
|
58 (defun toolbar-open ()
|
|
59 (interactive)
|
|
60 (call-interactively toolbar-open-function))
|
|
61
|
|
62 (defcustom toolbar-dired-function 'dired
|
|
63 "*Function to call when the dired icon is selected."
|
|
64 :type '(radio (function-item dired)
|
|
65 (function :tag "Other"))
|
|
66 :group 'toolbar)
|
|
67
|
|
68 (defun toolbar-dired ()
|
|
69 (interactive)
|
|
70 (call-interactively toolbar-dired-function))
|
|
71
|
|
72 (defcustom toolbar-save-function 'save-buffer
|
|
73 "*Function to call when the save icon is selected."
|
|
74 :type '(radio (function-item save-buffer)
|
|
75 (function :tag "Other"))
|
|
76 :group 'toolbar)
|
|
77
|
|
78 (defun toolbar-save ()
|
|
79 (interactive)
|
|
80 (call-interactively toolbar-save-function))
|
|
81
|
|
82 (defcustom toolbar-print-function 'lpr-buffer
|
|
83 "*Function to call when the print icon is selected."
|
|
84 :type '(radio (function-item lpr-buffer)
|
|
85 (function :tag "Other"))
|
|
86 :group 'toolbar)
|
|
87
|
|
88 (defun toolbar-print ()
|
|
89 (interactive)
|
|
90 (call-interactively toolbar-print-function))
|
|
91
|
|
92 (defcustom toolbar-cut-function 'x-kill-primary-selection
|
|
93 "*Function to call when the cut icon is selected."
|
|
94 :type '(radio (function-item x-kill-primary-selection)
|
|
95 (function :tag "Other"))
|
|
96 :group 'toolbar)
|
|
97
|
|
98 (defun toolbar-cut ()
|
|
99 (interactive)
|
|
100 (call-interactively toolbar-cut-function))
|
|
101
|
|
102 (defcustom toolbar-copy-function 'x-copy-primary-selection
|
|
103 "*Function to call when the copy icon is selected."
|
|
104 :type '(radio (function-item x-copy-primary-selection)
|
|
105 (function :tag "Other"))
|
|
106 :group 'toolbar)
|
|
107
|
|
108 (defun toolbar-copy ()
|
|
109 (interactive)
|
|
110 (call-interactively toolbar-copy-function))
|
|
111
|
|
112 (defcustom toolbar-paste-function 'x-yank-clipboard-selection
|
|
113 "*Function to call when the paste icon is selected."
|
|
114 :type '(radio (function-item x-yank-clipboard-selection)
|
|
115 (function :tag "Other"))
|
|
116 :group 'toolbar)
|
|
117
|
|
118 (defun toolbar-paste ()
|
|
119 (interactive)
|
|
120 ;; This horrible kludge is for pending-delete to work correctly.
|
|
121 (and (boundp 'pending-delete)
|
|
122 pending-delete
|
|
123 (let ((this-command toolbar-paste-function))
|
|
124 (pending-delete-pre-hook)))
|
|
125 (call-interactively toolbar-paste-function))
|
|
126
|
|
127 (defcustom toolbar-undo-function 'undo
|
|
128 "*Function to call when the undo icon is selected."
|
|
129 :type '(radio (function-item undo)
|
|
130 (function :tag "Other"))
|
|
131 :group 'toolbar)
|
|
132
|
|
133 (defun toolbar-undo ()
|
|
134 (interactive)
|
|
135 (call-interactively toolbar-undo-function))
|
|
136
|
|
137 (defcustom toolbar-replace-function 'query-replace
|
|
138 "*Function to call when the replace icon is selected."
|
|
139 :type '(radio (function-item query-replace)
|
|
140 (function :tag "Other"))
|
|
141 :group 'toolbar)
|
|
142
|
|
143 (defun toolbar-replace ()
|
|
144 (interactive)
|
|
145 (call-interactively toolbar-replace-function))
|
|
146
|
|
147 ;;
|
|
148 ;; toolbar ispell variables and defuns
|
|
149 ;;
|
|
150
|
|
151 (defun toolbar-ispell-internal ()
|
|
152 (interactive)
|
|
153 (if (region-active-p)
|
|
154 (ispell-region (region-beginning) (region-end))
|
|
155 (ispell-buffer)))
|
|
156
|
|
157 (defcustom toolbar-ispell-function 'toolbar-ispell-internal
|
|
158 "*Function to call when the ispell icon is selected."
|
|
159 :type '(radio (function-item toolbar-ispell-internal)
|
|
160 (function :tag "Other"))
|
|
161 :group 'toolbar)
|
|
162
|
|
163 (defun toolbar-ispell ()
|
|
164 "Intelligently spell the region or buffer."
|
|
165 (interactive)
|
|
166 (call-interactively toolbar-ispell-function))
|
|
167
|
|
168 ;;
|
|
169 ;; toolbar mail variables and defuns
|
|
170 ;;
|
|
171
|
|
172 ;; This used to be a macro that expanded its arguments to a form that
|
|
173 ;; called `call-process'. With the advent of customize, it's better
|
|
174 ;; to have it as a defun, to make customization easier.
|
|
175 (defun toolbar-external (process &rest args)
|
|
176 (interactive)
|
|
177 (apply 'call-process process nil 0 nil args))
|
|
178
|
|
179 (defcustom toolbar-mail-commands-alist
|
|
180 `((not-configured . toolbar-not-configured)
|
|
181 (vm . vm)
|
|
182 (gnus . gnus-no-server)
|
|
183 (rmail . rmail)
|
|
184 (mh . mh-rmail)
|
|
185 (pine . (toolbar-external "xterm" "-e" "pine")) ; *gag*
|
|
186 (elm . (toolbar-external "xterm" "-e" "elm"))
|
|
187 (mutt . (toolbar-external "xterm" "-e" "mutt"))
|
|
188 (exmh . (toolbar-external "exmh"))
|
|
189 (netscape . (toolbar-external "netscape" "mailbox:")))
|
|
190 "*Alist of mail readers and their commands.
|
|
191 The car of each alist element is the mail reader, and the cdr is the form
|
|
192 used to start it."
|
|
193 :type '(repeat (cons :format "%v"
|
|
194 (symbol :tag "Mailer") (function :tag "Start with")))
|
|
195 :group 'toolbar)
|
|
196
|
|
197 (defcustom toolbar-mail-reader 'not-configured
|
|
198 "*Mail reader toolbar will invoke.
|
|
199 The legal values are the keys from `toolbar-mail-command-alist', which
|
|
200 should be used to add new mail readers.
|
|
201 Mail readers known by default are vm, gnus, rmail, mh, pine, elm,
|
|
202 mutt, exmh and netscape."
|
|
203 :type '(choice (const :tag "Not Configured" not-configured)
|
|
204 (const vm) (const gnus) (const rmail) (const mh)
|
|
205 (const pine) (const elm) (const mutt) (const exmh)
|
|
206 (const netscape)
|
|
207 (symbol :tag "Other"
|
|
208 :validate (lambda (wid)
|
|
209 (if (assq (widget-value wid)
|
|
210 toolbar-mail-commands-alist)
|
|
211 nil
|
|
212 (widget-put wid :error
|
|
213 "Unknown mail reader")
|
|
214 wid))))
|
|
215 :group 'toolbar)
|
|
216
|
|
217
|
|
218 (defun toolbar-mail ()
|
|
219 "Run mail in a separate frame."
|
|
220 (interactive)
|
215
|
221 (let ((command (cdr (assq toolbar-mail-reader toolbar-mail-commands-alist))))
|
209
|
222 (if (not command)
|
|
223 (error "Uknown mail reader %s" toolbar-mail-reader))
|
215
|
224 (if (symbolp command)
|
|
225 (call-interactively command)
|
|
226 (eval command))))
|
209
|
227
|
|
228 ;;
|
|
229 ;; toolbar info variables and defuns
|
|
230 ;;
|
|
231
|
|
232 (defvar toolbar-info-frame nil
|
|
233 "The frame in which info is displayed.")
|
|
234
|
|
235 (defcustom Info-frame-plist
|
|
236 (append (list 'width 80)
|
|
237 (let ((h (plist-get default-frame-plist 'height)))
|
|
238 (when h (list 'height h))))
|
|
239 "Frame plist for the Info frame."
|
|
240 :type '(repeat (group :inline t
|
|
241 (symbol :tag "Property")
|
|
242 (sexp :tag "Value")))
|
|
243 :group 'info)
|
|
244
|
|
245 (defun toolbar-info ()
|
|
246 "Run info in a separate frame."
|
|
247 (interactive)
|
|
248 (if (or (not toolbar-info-frame)
|
|
249 (not (frame-live-p toolbar-info-frame)))
|
|
250 (progn
|
|
251 (setq toolbar-info-frame (make-frame Info-frame-plist))
|
|
252 (select-frame toolbar-info-frame)
|
|
253 (raise-frame toolbar-info-frame)))
|
|
254 (if (frame-iconified-p toolbar-info-frame)
|
|
255 (deiconify-frame toolbar-info-frame))
|
|
256 (select-frame toolbar-info-frame)
|
|
257 (raise-frame toolbar-info-frame)
|
|
258 (info))
|
|
259
|
|
260 ;;
|
|
261 ;; toolbar debug variables and defuns
|
|
262 ;;
|
|
263
|
|
264 (defun toolbar-debug ()
|
|
265 (interactive)
|
|
266 (if (featurep 'eos-debugger)
|
|
267 (call-interactively 'eos::start-debugger)
|
|
268 (require 'gdbsrc)
|
|
269 (call-interactively 'gdbsrc)))
|
|
270
|
|
271 (defvar compile-command)
|
|
272
|
|
273 (defun toolbar-compile ()
|
|
274 "Run compile without having to touch the keyboard."
|
|
275 (interactive)
|
|
276 (require 'compile)
|
|
277 (popup-dialog-box
|
|
278 `(,(concat "Compile:\n " compile-command)
|
|
279 ["Compile" (compile compile-command) t]
|
|
280 ["Edit command" compile t]
|
|
281 nil
|
|
282 ["Cancel" (message "Quit") t])))
|
|
283
|
|
284 ;;
|
|
285 ;; toolbar news variables and defuns
|
|
286 ;;
|
|
287
|
|
288 (defcustom toolbar-news-commands-alist
|
|
289 `((not-configured . toolbar-not-configured)
|
|
290 (gnus . toolbar-gnus) ; M-x all-hail-gnus
|
|
291 (rn . (toolbar-external "xterm" "-e" "rn"))
|
|
292 (nn . (toolbar-external "xterm" "-e" "nn"))
|
|
293 (trn . (toolbar-external "xterm" "-e" "trn"))
|
|
294 (xrn . (toolbar-external "xrn"))
|
|
295 (slrn . (toolbar-external "xterm" "-e" "slrn"))
|
|
296 (pine . (toolbar-external "xterm" "-e" "pine")) ; *gag*
|
|
297 (tin . (toolbar-external "xterm" "-e" "tin")) ; *gag*
|
|
298 (netscape . (toolbar-external "netscape" "news:")))
|
|
299 "*Alist of news readers and their commands.
|
|
300 The car of each alist element the pair is the news reader, and the cdr
|
|
301 is the form used to start it."
|
|
302 :type '(repeat (cons :format "%v"
|
|
303 (symbol :tag "Reader") (sexp :tag "Start with")))
|
|
304 :group 'toolbar)
|
|
305
|
|
306 (defcustom toolbar-news-reader 'not-configured
|
|
307 "*News reader toolbar will invoke.
|
|
308 The legal values are the keys from `toolbar-news-command-alist', which should
|
|
309 be used to add new news readers.
|
|
310 Newsreaders known by default are gnus, rn, nn, trn, xrn, slrn, pine
|
|
311 and netscape."
|
|
312 :type '(choice (const :tag "Not Configured" not-configured)
|
|
313 (const gnus) (const rn) (const nn) (const trn)
|
|
314 (const xrn) (const slrn) (const pine) (const tin)
|
|
315 (const netscape)
|
|
316 (symbol :tag "Other"
|
|
317 :validate (lambda (wid)
|
|
318 (if (assq (widget-value wid)
|
|
319 toolbar-news-commands-alist)
|
|
320 nil
|
|
321 (widget-put wid :error
|
|
322 "Unknown news reader")
|
|
323 wid))))
|
|
324 :group 'toolbar)
|
|
325
|
|
326 (defcustom toolbar-news-use-separate-frame t
|
|
327 "*Whether Gnus is invoked in a separate frame."
|
|
328 :type 'boolean
|
|
329 :group 'toolbar)
|
|
330
|
|
331 (defvar toolbar-news-frame nil
|
|
332 "The frame in which news is displayed.")
|
|
333
|
217
|
334 (defcustom toolbar-news-frame-properties nil
|
|
335 "*The properties of the frame in which news is displayed."
|
|
336 :type '(repeat (group :inline t
|
|
337 (symbol :tag "Property")
|
|
338 (sexp :tag "Value")))
|
|
339 :group 'toolbar)
|
209
|
340
|
|
341 (defun toolbar-gnus ()
|
|
342 "Run Gnus in a separate frame."
|
|
343 (interactive)
|
217
|
344 (if (not toolbar-news-use-separate-frame)
|
|
345 (gnus)
|
|
346 (unless (frame-live-p toolbar-news-frame)
|
|
347 (setq toolbar-news-frame (make-frame toolbar-news-frame-properties))
|
|
348 (add-hook 'gnus-exit-gnus-hook
|
|
349 (lambda ()
|
|
350 (when (frame-live-p toolbar-news-frame)
|
|
351 (if (cdr (frame-list))
|
|
352 (delete-frame toolbar-news-frame))
|
|
353 (setq toolbar-news-frame nil))))
|
|
354 (select-frame toolbar-news-frame)
|
|
355 (raise-frame toolbar-news-frame)
|
|
356 (gnus))
|
|
357 (when (framep toolbar-news-frame)
|
|
358 (when (frame-iconified-p toolbar-news-frame)
|
|
359 (deiconify-frame toolbar-news-frame))
|
|
360 (select-frame toolbar-news-frame)
|
|
361 (raise-frame toolbar-news-frame))))
|
209
|
362
|
|
363 (defun toolbar-news ()
|
|
364 "Run News (in a separate frame??)."
|
|
365 (interactive)
|
|
366 (let ((command (assq toolbar-news-reader toolbar-news-commands-alist)))
|
|
367 (if (not command)
|
|
368 (error "Unknown news reader %s" toolbar-news-reader))
|
|
369 (funcall (cdr command))))
|
|
370
|
|
371 (defvar toolbar-last-win-icon nil "A `last-win' icon set.")
|
|
372 (defvar toolbar-next-win-icon nil "A `next-win' icon set.")
|
|
373 (defvar toolbar-file-icon nil "A `file' icon set.")
|
|
374 (defvar toolbar-folder-icon nil "A `folder' icon set")
|
|
375 (defvar toolbar-disk-icon nil "A `disk' icon set.")
|
|
376 (defvar toolbar-printer-icon nil "A `printer' icon set.")
|
|
377 (defvar toolbar-cut-icon nil "A `cut' icon set.")
|
|
378 (defvar toolbar-copy-icon nil "A `copy' icon set.")
|
|
379 (defvar toolbar-paste-icon nil "A `paste' icon set.")
|
|
380 (defvar toolbar-undo-icon nil "An `undo' icon set.")
|
|
381 (defvar toolbar-spell-icon nil "A `spell' icon set.")
|
|
382 (defvar toolbar-replace-icon nil "A `replace' icon set.")
|
|
383 (defvar toolbar-mail-icon nil "A `mail' icon set.")
|
|
384 (defvar toolbar-info-icon nil "An `info' icon set.")
|
|
385 (defvar toolbar-compile-icon nil "A `compile' icon set.")
|
|
386 (defvar toolbar-debug-icon nil "A `debugger' icon set.")
|
|
387 (defvar toolbar-news-icon nil "A `news' icon set.")
|
|
388
|
|
389 ;;; each entry maps a variable to the prefix used.
|
|
390
|
|
391 (defvar init-x-toolbar-list
|
|
392 '((toolbar-last-win-icon . "last-win")
|
|
393 (toolbar-next-win-icon . "next-win")
|
|
394 (toolbar-file-icon . "file")
|
|
395 (toolbar-folder-icon . "folder")
|
|
396 (toolbar-disk-icon . "disk")
|
|
397 (toolbar-printer-icon . "printer")
|
|
398 (toolbar-cut-icon . "cut")
|
|
399 (toolbar-copy-icon . "copy")
|
|
400 (toolbar-paste-icon . "paste")
|
|
401 (toolbar-undo-icon . "undo")
|
|
402 (toolbar-spell-icon . "spell")
|
|
403 (toolbar-replace-icon . "replace")
|
|
404 (toolbar-mail-icon . "mail")
|
|
405 (toolbar-info-icon . "info-def")
|
|
406 (toolbar-compile-icon . "compile")
|
|
407 (toolbar-debug-icon . "debug")
|
|
408 (toolbar-news-icon . "news")))
|
|
409
|
|
410 (defun init-x-toolbar ()
|
|
411 (toolbar-add-item-data init-x-toolbar-list )
|
|
412 ;; do this now because errors will occur if the icon symbols
|
|
413 ;; are not initted
|
|
414 (set-specifier default-toolbar initial-toolbar-spec))
|
|
415
|
|
416 (defun toolbar-add-item-data ( icon-list &optional icon-dir )
|
|
417 (if (eq icon-dir nil)
|
|
418 (setq icon-dir toolbar-icon-directory))
|
|
419 (mapcar
|
|
420 (lambda (cons)
|
|
421 (let ((prefix (expand-file-name (cdr cons) icon-dir)))
|
|
422 (set (car cons)
|
|
423 (if (featurep 'xpm)
|
|
424 (toolbar-make-button-list
|
|
425 (concat prefix "-up.xpm")
|
|
426 nil
|
|
427 (concat prefix "-xx.xpm")
|
|
428 (concat prefix "-cap-up.xpm")
|
|
429 nil
|
|
430 (concat prefix "-cap-xx.xpm"))
|
|
431 (toolbar-make-button-list
|
|
432 (concat prefix "-up.xbm")
|
|
433 (concat prefix "-dn.xbm")
|
|
434 (concat prefix "-xx.xbm")
|
|
435 )))))
|
|
436 icon-list )
|
|
437 )
|
|
438
|
|
439 (defvar initial-toolbar-spec
|
|
440 '(;;[toolbar-last-win-icon pop-window-configuration
|
|
441 ;;(frame-property (selected-frame)
|
|
442 ;; 'window-config-stack) t "Most recent window config"]
|
|
443 ;; #### Illicit knowledge?
|
|
444 ;; #### These don't work right - not consistent!
|
|
445 ;; I don't know what's wrong; perhaps `selected-frame' is wrong
|
|
446 ;; sometimes when this is evaluated. Note that I even tried to
|
|
447 ;; kludge-fix this by calls to `set-specifier-dirty-flag' in
|
|
448 ;; pop-window-configuration and such.
|
|
449
|
|
450 ;;[toolbar-next-win-icon unpop-window-configuration
|
|
451 ;;(frame-property (selected-frame)
|
|
452 ;; 'window-config-unpop-stack) t "Undo \"Most recent window config\""]
|
|
453 ;; #### Illicit knowledge?
|
|
454
|
|
455 [toolbar-file-icon toolbar-open t "Open a file"]
|
|
456 [toolbar-folder-icon toolbar-dired t "View directory"]
|
|
457 [toolbar-disk-icon toolbar-save t "Save buffer"]
|
|
458 [toolbar-printer-icon toolbar-print t "Print buffer"]
|
|
459 [toolbar-cut-icon toolbar-cut t "Kill region"]
|
|
460 [toolbar-copy-icon toolbar-copy t "Copy region"]
|
|
461 [toolbar-paste-icon toolbar-paste t "Paste from clipboard"]
|
|
462 [toolbar-undo-icon toolbar-undo t "Undo edit"]
|
|
463 [toolbar-spell-icon toolbar-ispell t "Spellcheck"]
|
|
464 [toolbar-replace-icon toolbar-replace t "Replace text"]
|
|
465 [toolbar-mail-icon toolbar-mail t "Mail"]
|
|
466 [toolbar-info-icon toolbar-info t "Information"]
|
|
467 [toolbar-compile-icon toolbar-compile t "Compile"]
|
|
468 [toolbar-debug-icon toolbar-debug t "Debug"]
|
|
469 [toolbar-news-icon toolbar-news t "News"]
|
|
470 )
|
|
471 "The initial toolbar for a buffer.")
|
|
472
|
|
473 (defun x-init-toolbar-from-resources (locale)
|
|
474 (x-init-specifier-from-resources
|
|
475 top-toolbar-height 'natnum locale
|
|
476 '("topToolBarHeight" . "TopToolBarHeight"))
|
|
477 (x-init-specifier-from-resources
|
|
478 bottom-toolbar-height 'natnum locale
|
|
479 '("bottomToolBarHeight" . "BottomToolBarHeight"))
|
|
480 (x-init-specifier-from-resources
|
|
481 left-toolbar-width 'natnum locale
|
|
482 '("leftToolBarWidth" . "LeftToolBarWidth"))
|
|
483 (x-init-specifier-from-resources
|
|
484 right-toolbar-width 'natnum locale
|
215
|
485 '("rightToolBarWidth" . "RightToolBarWidth"))
|
|
486 (x-init-specifier-from-resources
|
|
487 top-toolbar-border-width 'natnum locale
|
|
488 '("topToolBarBorderWidth" . "TopToolBarBorderWidth"))
|
|
489 (x-init-specifier-from-resources
|
|
490 bottom-toolbar-border-width 'natnum locale
|
|
491 '("bottomToolBarBorderWidth" . "BottomToolBarBorderWidth"))
|
|
492 (x-init-specifier-from-resources
|
|
493 left-toolbar-border-width 'natnum locale
|
|
494 '("leftToolBarBorderWidth" . "LeftToolBarBorderWidth"))
|
|
495 (x-init-specifier-from-resources
|
|
496 right-toolbar-border-width 'natnum locale
|
|
497 '("rightToolBarBorderWidth" . "RightToolBarBorderWidth")))
|
209
|
498
|
|
499 ;;; x-toolbar.el ends here
|