diff options
| author | Dan Nicolaescu | 2010-07-08 14:25:08 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-08 14:25:08 -0700 |
| commit | 5842a27bbfb7efa6872824e501bc7ec98b631553 (patch) | |
| tree | d173899af9cbed9d90d94cfc710e6ecc06dd1f6b /src/menu.c | |
| parent | 71c44c04bb996abe77db8efd88255fde06532b10 (diff) | |
| download | emacs-5842a27bbfb7efa6872824e501bc7ec98b631553.tar.gz emacs-5842a27bbfb7efa6872824e501bc7ec98b631553.zip | |
Convert DEFUNs to standard C.
* src/alloc.c: Convert DEFUNs to standard C.
* src/buffer.c:
* src/bytecode.c:
* src/callint.c:
* src/callproc.c:
* src/casefiddle.c:
* src/casetab.c:
* src/category.c:
* src/character.c:
* src/charset.c:
* src/chartab.c:
* src/cmds.c:
* src/coding.c:
* src/composite.c:
* src/data.c:
* src/dbusbind.c:
* src/dired.c:
* src/dispnew.c:
* src/doc.c:
* src/dosfns.c:
* src/editfns.c:
* src/emacs.c:
* src/eval.c:
* src/fileio.c:
* src/filelock.c:
* src/floatfns.c:
* src/fns.c:
* src/font.c:
* src/fontset.c:
* src/frame.c:
* src/fringe.c:
* src/image.c:
* src/indent.c:
* src/insdel.c:
* src/keyboard.c:
* src/keymap.c:
* src/lread.c:
* src/macros.c:
* src/marker.c:
* src/menu.c:
* src/minibuf.c:
* src/msdos.c:
* src/nsfns.m:
* src/nsmenu.m:
* src/nsselect.m:
* src/print.c:
* src/process.c:
* src/search.c:
* src/sound.c:
* src/syntax.c:
* src/term.c:
* src/terminal.c:
* src/textprop.c:
* src/undo.c:
* src/w16select.c:
* src/w32console.c:
* src/w32fns.c:
* src/w32font.c:
* src/w32menu.c:
* src/w32proc.c:
* src/w32select.c:
* src/window.c:
* src/xdisp.c:
* src/xfaces.c:
* src/xfns.c:
* src/xmenu.c:
* src/xselect.c:
* src/xsettings.c:
* src/xsmfns.c: Likewise.
Diffstat (limited to 'src/menu.c')
| -rw-r--r-- | src/menu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/menu.c b/src/menu.c index a90c71219d3..a424200fb3e 100644 --- a/src/menu.c +++ b/src/menu.c | |||
| @@ -1064,8 +1064,7 @@ keyboard input, then this normally results in a quit and | |||
| 1064 | `x-popup-menu' does not return. But if POSITION is a mouse button | 1064 | `x-popup-menu' does not return. But if POSITION is a mouse button |
| 1065 | event (indicating that the user invoked the menu with the mouse) then | 1065 | event (indicating that the user invoked the menu with the mouse) then |
| 1066 | no quit occurs and `x-popup-menu' returns nil. */) | 1066 | no quit occurs and `x-popup-menu' returns nil. */) |
| 1067 | (position, menu) | 1067 | (Lisp_Object position, Lisp_Object menu) |
| 1068 | Lisp_Object position, menu; | ||
| 1069 | { | 1068 | { |
| 1070 | Lisp_Object keymap, tem; | 1069 | Lisp_Object keymap, tem; |
| 1071 | int xpos = 0, ypos = 0; | 1070 | int xpos = 0, ypos = 0; |