comparison src/xmenu.c @ 40239:5fda2888718a

Spell the name of Emacs properly (GNU Emacs instead of gnuemacs). (HAVE_BOXES): Fix typo in comment. (push_menu_pane): Fix typo in comment.
author Pavel Janík <Pavel@Janik.cz>
date Wed, 24 Oct 2001 07:08:38 +0000
parents eac4e9ae201c
children a56267e601e4
comparison
equal deleted inserted replaced
40238:588ccdb10b2f 40239:5fda2888718a
17 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to 18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */ 20 Boston, MA 02111-1307, USA. */
21 21
22 /* X pop-up deck-of-cards menu facility for gnuemacs. 22 /* X pop-up deck-of-cards menu facility for GNU Emacs.
23 * 23 *
24 * Written by Jon Arnold and Roman Budzianowski 24 * Written by Jon Arnold and Roman Budzianowski
25 * Mods and rewrite by Robert Krawitz 25 * Mods and rewrite by Robert Krawitz
26 * 26 *
27 */ 27 */
113 void popup_get_selection (); 113 void popup_get_selection ();
114 #endif 114 #endif
115 115
116 #ifdef USE_X_TOOLKIT 116 #ifdef USE_X_TOOLKIT
117 117
118 /* Define HAVE_BOXES if meus can handle radio and toggle buttons. */ 118 /* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
119 119
120 #define HAVE_BOXES 1 120 #define HAVE_BOXES 1
121 #endif 121 #endif
122 122
123 static void push_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, 123 static void push_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
318 grow_menu_items (); 318 grow_menu_items ();
319 319
320 XVECTOR (menu_items)->contents[menu_items_used++] = Qquote; 320 XVECTOR (menu_items)->contents[menu_items_used++] = Qquote;
321 } 321 }
322 322
323 /* Start a new menu pane in menu_items.. 323 /* Start a new menu pane in menu_items.
324 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */ 324 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
325 325
326 static void 326 static void
327 push_menu_pane (name, prefix_vec) 327 push_menu_pane (name, prefix_vec)
328 Lisp_Object name, prefix_vec; 328 Lisp_Object name, prefix_vec;