Mercurial > hg > xemacs-beta
annotate tests/gtk/xemacs-toolbar.el @ 975:151d438d2d55
[xemacs-hg @ 2002-08-28 05:36:20 by youngs]
2002-08-16 Steve Youngs <youngs@xemacs.org>
* version.sh (xemacs_extra_name): New var to identify XEmacs
version > release < next release. ie, release+cvs.
* configure.in: Test for xemacs_extra_name.
* configure: Re-generate.
2002-08-16 Steve Youngs <youngs@xemacs.org>
* build-report.el (build-report-installation-version-regexp):
Update to cater for 'xemacs-extra-name'.
(build-report-version-file-regexp): Ditto.
(build-report): Ditto.
(build-report-installation-data): Ditto.
(build-report-version-file-data): Ditto.
* version.el (emacs-version): Test for 'xemacs-extra-name'.
2002-08-16 Steve Youngs <youngs@xemacs.org>
* config.h.in (XEMACS_EXTRA_NAME): New.
* emacs.c (vars_of_emacs): Use it.
author | youngs |
---|---|
date | Wed, 28 Aug 2002 05:36:34 +0000 |
parents | 0784d089fdc9 |
children | db7068430402 |
rev | line source |
---|---|
462 | 1 (defvar gtk-torture-test-toolbar-open-active-p t) |
2 | |
3 (defvar gtk-torture-test-toolbar | |
4 '([toolbar-file-icon | |
5 (lambda () | |
6 (setq gtk-torture-test-toolbar-open-active-p (not gtk-torture-test-toolbar-open-active-p))) | |
7 gtk-torture-test-toolbar-open-active-p | |
8 "Dynamic enabled-p slot... broken in XEmacs 21.1.x"] | |
9 [:size 35 :style 3d] | |
10 [toolbar-folder-icon toolbar-dired t "Edit a directory"] | |
11 [:size 35 :style 2d] | |
12 [toolbar-news-icon toolbar-news t "Read news"] | |
13 nil | |
14 [toolbar-info-icon toolbar-info t "Info documentation"] | |
15 )) | |
16 | |
17 (defun gtk-torture-test-toolbar () | |
18 (interactive) | |
19 (switch-to-buffer (get-buffer-create "Toolbar testing")) | |
20 (set-specifier default-toolbar gtk-torture-test-toolbar (current-buffer)) | |
21 (set-specifier default-toolbar-visible-p t (current-buffer))) |