Mercurial > emacs
annotate oldXMenu/XMenuInt.h @ 83009:b2b37c85b00a
Numerous bugfixes and small improvements.
lisp/bindings.el (mode-line-frame-identification): Use %T, not %F.
lisp/faces.el (x-create-frame-with-faces): Added
frame-creation-function parameter.
(tty-create-frame-with-faces): Ditto.
lisp/frame.el (frame-creation-function): Make it frame-local.
(select-frame-set-input-focus): Use the window-system function, not
the variable.
lisp/server.el (server-handle-delete-tty): Make sure the client
process is removed from server-clients after the delete-process call.
It seems that the sentinel is not called. Added docs.
(server-process-filter): Immediately add the client to server-clients
when a new termcap frame is created. Fixed a case of `not' called
with two parameters. Ignore errors while sending the evaluation
result back to the client.
(server-kill-buffer-query-function): Don't ask the user if the server
process is already dead.
lisp/term/x-win.el: Don't change mode-line-frame-identification.
src/buffer.c (syms_of_buffer): Added %T to the docs of mode-line-format.
src/dispnew.c (init_display): Increment the reference count of the new
termcap display.
src/frame.c (make_terminal_frame): Set the old top frame's visibility
to `obscured'.
(Fmake_terminal_frame): Look at the current termcap display's name,
not just the similar frame parameter. Try to get the type from the
current display first, and only then from Vdefault_frame_alist.
src/keyboard.c (handle_interrupt): New function to separate the signal
handling from C-g processing.
(interrupt_signal): Call handle_interrupt to do the real work.
(kbd_buffer_store_event): Use handle_interrupt instead of interrupt_signal.
(cmd_error_internal): Use FRAME_INITIAL_P instead of ugly hacks.
src/termhooks.h (initial_display): New declaration.
src/xdisp.c (decode_mode_spec): Added '%T' (termcap-only frame name).
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-49
| author | Karoly Lorentey <lorentey@elte.hu> |
|---|---|
| date | Sat, 10 Jan 2004 12:56:22 +0000 |
| parents | f0eb34e60705 |
| children | 8e5779acd195 |
| rev | line source |
|---|---|
| 25858 | 1 |
|
53224
f0eb34e60705
tag of miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-137
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
2 /* $Header: /cvsroot/emacs/emacs/oldXMenu/XMenuInt.h,v 1.3 2003/09/01 15:45:47 miles Exp $ */ |
| 25858 | 3 /* Copyright Massachusetts Institute of Technology 1985 */ |
| 4 | |
| 5 /* | |
| 6 * XMenu: MIT Project Athena, X Window system menu package | |
| 7 * | |
| 8 * XMenuInternal.h - Internal menu system include file for the | |
| 9 * MIT Project Athena XMenu X window system | |
| 10 * menu package. | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
11 * |
| 25858 | 12 * Author: Tony Della Fera, DEC |
| 13 * October, 1985 | |
| 14 */ | |
| 15 | |
| 16 #ifndef _XMenuInternal_h_ | |
| 17 #define _XMenuInternal_h_ | |
| 18 | |
| 19 /* Avoid warnings about redefining NULL by including <stdio.h> first; | |
| 20 the other file which wants to define it (<stddef.h> on Ultrix | |
| 21 systems) can deal if NULL is already defined, but <stdio.h> can't. */ | |
| 22 #include <stdio.h> | |
| 23 #include <X11/Xlib.h> | |
| 24 #include "X10.h" | |
| 25 #include "XMenu.h" | |
| 26 | |
| 27 #define min(x, y) ((x) <= (y) ? (x) : (y)) | |
| 28 #define max(x, y) ((x) >= (y) ? (x) : (y)) | |
| 29 #define abs(a) ((a) < 0 ? -(a) : (a)) | |
| 30 | |
| 31 #define _X_FAILURE -1 | |
| 32 | |
| 33 #define _SUCCESS 1 | |
| 34 #define _FAILURE -1 | |
| 35 | |
| 36 /* | |
| 37 * XMenu internal event handler variable. | |
| 38 */ | |
| 39 extern int (*_XMEventHandler)(); | |
| 40 | |
| 41 #ifndef Pixel | |
| 42 #define Pixel unsigned long | |
| 43 #endif | |
| 44 | |
| 45 /* | |
| 46 * Internal routine declarations. | |
| 47 */ | |
| 48 int _XMWinQueInit(); /* No value actually returned. */ | |
| 49 int _XMWinQueAddPane(); | |
| 50 int _XMWinQueAddSelection(); | |
| 51 int _XMWinQueFlush(); | |
| 52 XMPane *_XMGetPanePtr(); | |
| 53 XMSelect *_XMGetSelectionPtr(); | |
| 54 int _XMRecomputeGlobals(); /* No value actually returned. */ | |
| 55 int _XMRecomputePane(); | |
| 56 int _XMRecomputeSelection(); | |
| 57 int _XMTransToOrigin(); /* No value actually returned. */ | |
| 58 int _XMRefreshPane(); /* No value actually returned. */ | |
| 59 int _XMRefreshSelections(); /* No value actually returned. */ | |
| 60 int _XMHighlightSelection(); /* No value actually returned. */ | |
| 61 | |
| 62 #endif | |
| 63 /* Don't add stuff after this #endif */ | |
| 52401 | 64 |
| 65 /* arch-tag: 00640af1-9386-48b5-a4be-35620b8cd3aa | |
| 66 (do not change this comment) */ |
