Mercurial > emacs
annotate oldXMenu/SetSel.c @ 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 #include "copyright.h" |
| 2 | |
|
53224
f0eb34e60705
tag of miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-137
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
3 /* $Header: /cvsroot/emacs/emacs/oldXMenu/SetSel.c,v 1.3 2003/09/01 15:45:47 miles Exp $ */ |
| 25858 | 4 /* Copyright Massachusetts Institute of Technology 1985 */ |
| 5 | |
| 6 /* | |
| 7 * XMenu: MIT Project Athena, X Window system menu package | |
| 8 * | |
| 9 * XMenuSetSelection - Set a menu selection to be active or inactive. | |
| 10 * | |
| 11 * Author: Tony Della Fera, DEC | |
| 12 * August, 1985 | |
| 13 * | |
| 14 */ | |
| 15 | |
| 16 #include "XMenuInt.h" | |
| 17 | |
| 18 int | |
| 19 XMenuSetSelection(menu, p_num, s_num, active) | |
| 20 register XMenu *menu; /* Menu object to be modified. */ | |
| 21 register int p_num; /* Pane number to be modified. */ | |
| 22 register int s_num; /* Selection number to modified. */ | |
| 23 int active; /* Make selection active? */ | |
| 24 { | |
| 25 register XMPane *p_ptr; /* XMPane pointer. */ | |
| 26 register XMSelect *s_ptr; /* XMSelect pointer. */ | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
27 |
| 25858 | 28 /* |
| 29 * Find the right pane. | |
| 30 */ | |
| 31 p_ptr = _XMGetPanePtr(menu, p_num); | |
| 32 if (p_ptr == NULL) return(XM_FAILURE); | |
| 33 | |
| 34 /* | |
| 35 * Find the right selection. | |
| 36 */ | |
| 37 s_ptr = _XMGetSelectionPtr(p_ptr, s_num); | |
| 38 if (s_ptr == NULL) return(XM_FAILURE); | |
| 39 | |
| 40 /* | |
| 41 * Set its active switch. | |
| 42 */ | |
| 43 s_ptr->active = active; | |
| 44 | |
| 45 /* | |
| 46 * Return the selection number just set. | |
| 47 */ | |
| 48 _XMErrorCode = XME_NO_ERROR; | |
| 49 return(s_num); | |
| 50 } | |
| 52401 | 51 |
| 52 /* arch-tag: 79198ae0-c5a4-4d31-adb0-5747f833f56a | |
| 53 (do not change this comment) */ |
