Mercurial > emacs
annotate oldXMenu/DelSel.c @ 59822:280d6b93af80
(ispell-local-dictionary-overridden): New var.
(ispell-local-dictionary): Doc fix.
(ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
Don't reinitialize at run time. Don't defcustom.
All uses changed to append ispell-local-dictionary-alist,
or else check it first.
(ispell-current-dictionary): New variable for dictionary in use.
(ispell-dictionary): Now used only for global default.
(ispell-start-process): Set ispell-current-dictionary,
not ispell-dictionary.
(ispell-change-dictionary): Use this only for setting
user preferences.
(ispell-internal-change-dictionary): New function
to change the current dictionary in use.
(ispell-region, ispell-process-line, ispell-buffer-local-dict):
Use ispell-current-dictionary.
Handle ispell-local-dictionary-overridden.
(ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 31 Jan 2005 11:54:10 +0000 |
parents | e8824c4f5f7e |
children | 3861ff8f4bf1 8e5779acd195 |
rev | line source |
---|---|
25858 | 1 #include "copyright.h" |
2 | |
3 /* Copyright Massachusetts Institute of Technology 1985 */ | |
4 | |
5 /* | |
6 * XMenu: MIT Project Athena, X Window system menu package | |
7 * | |
8 * XMenuDeleteSelection - Deletes a selection from an XMenu object. | |
9 * | |
10 * Author: Tony Della Fera, DEC | |
11 * 20-Nov-85 | |
12 * | |
13 */ | |
14 | |
15 #include "XMenuInt.h" | |
16 | |
17 int | |
18 XMenuDeleteSelection(display, menu, p_num, s_num) | |
19 register Display *display; /* Previously opened display. */ | |
20 register XMenu *menu; /* Menu object to be modified. */ | |
21 register int p_num; /* Pane number to be deleted. */ | |
22 register int s_num; /* Selection number to be deleted. */ | |
23 { | |
24 register XMPane *p_ptr; /* Pointer to pane being deleted. */ | |
25 register XMSelect *s_ptr; /* Pointer to selections being deleted. */ | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
26 |
25858 | 27 /* |
28 * Find the right pane. | |
29 */ | |
30 p_ptr = _XMGetPanePtr(menu, p_num); | |
31 if (p_ptr == NULL) return(XM_FAILURE); | |
32 | |
33 /* | |
34 * Find the right selection. | |
35 */ | |
36 s_ptr = _XMGetSelectionPtr(p_ptr, s_num); | |
37 if (s_ptr == NULL) return(XM_FAILURE); | |
38 | |
39 /* | |
40 * Remove the selection from the association table. | |
41 */ | |
42 XDeleteAssoc(display, menu->assoc_tab, s_ptr->window); | |
43 | |
44 /* | |
45 * Remove the selection from the parent pane's selection | |
46 * list and update the selection count. | |
47 */ | |
48 emacs_remque(s_ptr); | |
49 p_ptr->s_count--; | |
50 | |
51 /* | |
52 * Destroy the selection transparency. | |
53 */ | |
54 if (s_ptr->window) XDestroyWindow(display, s_ptr->window); | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
55 |
25858 | 56 /* |
57 * Free the selection's XMSelect structure. | |
58 */ | |
59 free(s_ptr); | |
60 | |
61 /* | |
62 * Schedule a recompute. | |
63 */ | |
64 menu->recompute = 1; | |
65 | |
66 /* | |
67 * Return the selection number just deleted. | |
68 */ | |
69 _XMErrorCode = XME_NO_ERROR; | |
70 return(s_num); | |
71 } | |
52401 | 72 |
73 /* arch-tag: 24ca2bc7-8a37-471a-8095-e6363fc1ed10 | |
74 (do not change this comment) */ |