Mercurial > emacs
annotate oldXMenu/SetPane.c @ 82977:e300f00a427a
[ Merge from Gnus v5-10 branch. See the tags "gnus-5_10-pre-merge-josefsson"
and "gnus-5_10-post-merge-josefsson". ]
2004-08-31 Simon Josefsson <jas@extundo.com>
* rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
?* and ?\; (tiny patch). From Andreas Schwab <schwab@suse.de>.
* ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
and ?\' to symbol instead of whitespace (tiny patch). From
Andreas Schwab <schwab@suse.de>.
2004-08-31 Jesper Harder <harder@ifa.au.dk>
* message.el (message-idna-to-ascii-rhs-1): Don't choke on
invalid addresses.
2004-08-31 Reiner Steib <Reiner.Steib@gmx.de>
* message.el (message-idna-to-ascii-rhs-1): Fix typo.
2004-08-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
* message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
2004-08-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-art.el (article-decode-idna-rhs): Don't use
message-idna-inside-rhs-p.
2004-08-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
* message.el (message-idna-inside-rhs-p): Removed.
(message-idna-to-ascii-rhs-1): Use proper address parsing.
| author | Reiner Steib <Reiner.Steib@gmx.de> |
|---|---|
| date | Tue, 31 Aug 2004 15:38:25 +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 * XMenuSetPane - Set a menu pane to be active or inactive. | |
| 9 * | |
| 10 * Author: Tony Della Fera, DEC | |
| 11 * August, 1985 | |
| 12 * | |
| 13 */ | |
| 14 | |
| 15 #include "XMenuInt.h" | |
| 16 | |
| 17 int | |
| 18 XMenuSetPane(menu, p_num, active) | |
| 19 register XMenu *menu; /* Menu object to be modified. */ | |
| 20 register int p_num; /* Pane number to be modified. */ | |
| 21 register int active; /* Make selection active? */ | |
| 22 { | |
| 23 register XMPane *p_ptr; /* XMPane pointer. */ | |
| 24 | |
| 25 /* | |
| 26 * Find the right pane. | |
| 27 */ | |
| 28 p_ptr = _XMGetPanePtr(menu, p_num); | |
| 29 if (p_ptr == NULL) return(XM_FAILURE); | |
| 30 | |
| 31 /* | |
| 32 * Set its active switch. | |
| 33 */ | |
| 34 p_ptr->active = active; | |
| 35 if (p_ptr->active == False) p_ptr->activated = False; | |
| 36 | |
| 37 /* | |
| 38 * Return the pane number just set. | |
| 39 */ | |
| 40 _XMErrorCode = XME_NO_ERROR; | |
| 41 return(p_num); | |
| 42 } | |
| 52401 | 43 |
| 44 /* arch-tag: 90bc8d90-031d-41a2-a2c6-04bf94efbc90 | |
| 45 (do not change this comment) */ |
