annotate lisp/hyperbole/hui-menu.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 4103f0995bd7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;!emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; FILE: hui-menu.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; SUMMARY: InfoDock/Emacs menubar menu of Hyperbole commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; USAGE: GNU Emacs Lisp Library
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; KEYWORDS: hypermedia, mouse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; AUTHOR: Bob Weiner
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; ORG: Motorola, Inc., PPG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; ORIG-DATE: 28-Oct-94 at 10:59:44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; LAST-MOD: 26-Oct-95 at 23:10:38 by Bob Weiner
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; Copyright (C) 1994-1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; This file is part of Hyperbole.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; DESCRIPTION:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; DESCRIP-END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;;; Other required Elisp libraries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 (require 'wrolo-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; Public functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; Add Hyperbole menu to menubar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 (defun hyperbole-menubar-menu ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 "Add the Hyperbole menu to the global menubar."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (if hyperb:emacs19-p (require 'lmenu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (if (and (boundp 'current-menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (or hyperb:emacs19-p current-menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (not (car (find-menu-item current-menubar '("Hyperbole")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (let ((add-before (if (and (boundp 'infodock-menubar-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (eq infodock-menubar-type 'menubar-infodock))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 "Key" nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (if (fboundp 'add-submenu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (add-submenu nil infodock-hyperbole-menu add-before)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (add-menu nil (car infodock-hyperbole-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (cdr infodock-hyperbole-menu) add-before)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;;; Public variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;;; Don't change this name; doing so will break the way InfoDock
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;; initializes the Hyperbole menu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (defconst infodock-hyperbole-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (delq nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 "Hyperbole"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 '["Browse-Manual" (id-info "(hyperbole.info)Top") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 '["Activate-Button-at-Point" hui:hbut-act t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 '["Back-to-Prior-Location" (hhist:remove current-prefix-arg) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 '("Button-File"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ["Manual" (id-info "(hyperbole.info)Button Files") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ["Edit-Per-Directory-File" (find-file hbmap:filename) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ["Edit-Personal-File" (find-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 hbmap:filename hbmap:dir-user)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 '("Documentation"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ["Manual" (id-info "(hyperbole.info)Top") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ["Copyright" (id-info "(hyperbole.info)Top") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ["Demonstration" (find-file-read-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (expand-file-name "DEMO" hyperb:dir)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ["Manifest" (find-file-read-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (expand-file-name "MANIFEST" hyperb:dir)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ["Glossary" (id-info "(hyperbole.info)Glossary") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ["Mail-Lists" (id-info "(hyperbole.info)Mail Lists") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ["New-Features" (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (hact 'link-to-regexp-match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 "\\*[ \t]+What's New" 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (expand-file-name "README" hyperb:dir))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (setq buffer-read-only nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (toggle-read-only)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ["Smart-Key-Summary" (id-browse-file (hypb:mouse-help-file)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 '("Explicit-Button"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 ["Manual" (id-info "(hyperbole.info)Explicit Buttons") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ["Activate-at-Point" hui:hbut-act t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ["Create" hui:ebut-create t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ["Delete" hui:ebut-delete t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ["Edit" hui:ebut-modify t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ("Help"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ["Manual" (id-info "(hyperbole.info)Location") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ["Buffer-Buttons" (hui:hbut-report -1) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ["Current-Button" (hui:hbut-report) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ["Ordered-Buttons" (hui:hbut-report 1) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ["Modify" hui:ebut-modify t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 ["Rename" hui:ebut-rename t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 ["Search" hui:ebut-search t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 '("Global-Button"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ["Manual" (id-info "(hyperbole.info)Global Buttons") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ["Activate" gbut:act t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 ["Create" hui:gbut-create t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ["Edit" hui:gbut-modify t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ["Help" gbut:help t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ["Modify" hui:gbut-modify t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 '("Implicit-Button"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 ["Manual" (id-info "(hyperbole.info)Implicit Buttons") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 ["Activate-at-Point" hui:hbut-act t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 ["Delete-Type" (hui:htype-delete 'ibtypes) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 ["Help" hui:hbut-help t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 ["Types" (hui:htype-help 'ibtypes 'no-sort) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 '("Mail-Lists"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 ["Manual" (id-info "(hyperbole.info)Suggestion or Bug Reporting")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ["Change-Hyperbole-Address"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (hmail:compose "hyperbole-request@hub.ucsb.edu"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 '(hact 'hyp-request)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 ["Change-Hyperbole-Announce-Address"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (hmail:compose "hyperbole-request@hub.ucsb.edu"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 '(hact 'hyp-request)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 ["Mail-to-Hyperbole-List"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (hmail:compose "hyperbole@hub.ucsb.edu" '(hact 'hyp-config)) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (if hyperb:kotl-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 '("Outline"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ["Manual" (id-info "(hyperbole.info)Outliner") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 ["Example" (find-file-read-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 "EXAMPLE.kotl" (concat hyperb:dir "kotl/")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 ["Create-File" kfile:find t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 ["View-File" kfile:view t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ["Collapse-Tree" (progn (kotl-mode:is-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (kotl-mode:hide-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (kcell-view:label))) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 ["Create-Link" klink:create t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 ["Expand-All-Trees" kotl-mode:show-all t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 ["Expand-Tree" (progn (kotl-mode:is-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (kotl-mode:show-tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (kcell-view:label))) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ["Show-Top-Level-Only" kotl-mode:hide-body t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 infodock-wrolo-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 '("Types"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 ["Action-Types-Manual"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (id-info "(hyperbole.info)Action Types") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 ["Implicit-Button-Types-Manual"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (id-info "(hyperbole.info)Implicit Buttons") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 ["Action-Types" (hui:htype-help 'actypes) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 ["Implicit-Button-Types" (hui:htype-help 'ibtypes 'no-sort) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 '("Window-Configuration"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 ["Manual" (id-info "(hyperbole.info)Window Configurations") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ["Name-Configuration" wconfig-add-by-name t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ["Delete-Name" wconfig-delete-by-name t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 ["Restore-Name" wconfig-restore-by-name t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 ["Pop-from-Ring" wconfig-delete-pop t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ["Save-to-Ring" wconfig-ring-save t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 ["Yank-from-Ring" wconfig-yank-pop t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 '["Quit" (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 ;; Delete Hyperbole menu item from all menubars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (lambda (buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (if (assoc "Hyperbole" current-menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (delete-menu-item '("Hyperbole")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (buffer-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 ;; Remove Hyperbole button comment from future
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ;; outgoing mail.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (if (boundp 'smail:comment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (setq smail:comment "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 ;;; Private variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (provide 'hui-menu)