aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu.h
diff options
context:
space:
mode:
authorPaul Eggert2014-06-06 12:33:19 -0700
committerPaul Eggert2014-06-06 12:33:19 -0700
commit5dda54d600664bdff6b9e76773c4f29fd7e39915 (patch)
tree62571d3a96008b020a7edea83673e16eef4dbd15 /src/menu.h
parent3112e4002cb1a29861bd7ae1b7ddff0dbdaa38a7 (diff)
downloademacs-5dda54d600664bdff6b9e76773c4f29fd7e39915.tar.gz
emacs-5dda54d600664bdff6b9e76773c4f29fd7e39915.zip
* term.c (tty_menu_show) [!HAVE_NTGUI]: Now static.
* menu.h (tty_menu_show) [!HAVE_NTGUI]: Omit extern decl.
Diffstat (limited to 'src/menu.h')
-rw-r--r--src/menu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/menu.h b/src/menu.h
index e2d7601378e..5b15294754d 100644
--- a/src/menu.h
+++ b/src/menu.h
@@ -29,7 +29,7 @@ extern Lisp_Object Qunsupported__w32_dialog;
29/* Bit fields used by terminal-specific menu_show_hook. */ 29/* Bit fields used by terminal-specific menu_show_hook. */
30 30
31enum { 31enum {
32 MENU_KEYMAPS = 0x1, 32 MENU_KEYMAPS = 0x1,
33 MENU_FOR_CLICK = 0x2, 33 MENU_FOR_CLICK = 0x2,
34 MENU_KBD_NAVIGATION = 0x4 34 MENU_KBD_NAVIGATION = 0x4
35}; 35};
@@ -64,12 +64,12 @@ extern Lisp_Object x_menu_show (struct frame *, int, int, int,
64#ifdef HAVE_NTGUI 64#ifdef HAVE_NTGUI
65extern Lisp_Object w32_menu_show (struct frame *, int, int, int, 65extern Lisp_Object w32_menu_show (struct frame *, int, int, int,
66 Lisp_Object, const char **); 66 Lisp_Object, const char **);
67extern Lisp_Object tty_menu_show (struct frame *, int, int, int,
68 Lisp_Object, const char **);
67#endif 69#endif
68#ifdef HAVE_NS 70#ifdef HAVE_NS
69extern Lisp_Object ns_menu_show (struct frame *, int, int, int, 71extern Lisp_Object ns_menu_show (struct frame *, int, int, int,
70 Lisp_Object, const char **); 72 Lisp_Object, const char **);
71#endif 73#endif
72extern Lisp_Object tty_menu_show (struct frame *, int, int, int,
73 Lisp_Object, const char **);
74extern ptrdiff_t menu_item_width (const unsigned char *); 74extern ptrdiff_t menu_item_width (const unsigned char *);
75#endif /* MENU_H */ 75#endif /* MENU_H */