Mercurial > hg > xemacs-beta
annotate src/console-stream.h @ 5885:c8bbb32fe124
Always return a string, #'current-message.
lisp/ChangeLog addition:
2015-04-04 Aidan Kehoe <kehoea@parhasard.net>
* gutter-items.el (append-progress-feedback):
* gutter-items.el (abort-progress-feedback):
Correct comments in both these functions, it's the progress stack
being adjusted, not the message stack.
* simple.el (message-stack):
Describe my recent change in the structure of this.
* simple.el (current-message):
Adjust the implementation of this to always return the string
displayed.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 04 Apr 2015 13:49:30 +0100 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
428 | 1 /* Define stream specific console, device, and frame object for XEmacs. |
2 Copyright (C) 1995 Board of Trustees, University of Illinois. | |
3 Copyright (C) 1995 Free Software Foundation, Inc. | |
1204 | 4 Copyright (C) 2002 Ben Wing. |
428 | 5 |
6 This file is part of XEmacs. | |
7 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
3092
diff
changeset
|
8 XEmacs is free software: you can redistribute it and/or modify it |
428 | 9 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
3092
diff
changeset
|
10 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
3092
diff
changeset
|
11 option) any later version. |
428 | 12 |
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
3092
diff
changeset
|
19 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
428 | 20 |
21 /* Synched up with: Not in FSF. */ | |
22 | |
23 /* Written by Ben Wing. */ | |
24 | |
440 | 25 #ifndef INCLUDED_console_stream_h_ |
26 #define INCLUDED_console_stream_h_ | |
428 | 27 |
28 #include "console.h" | |
29 | |
3092 | 30 #ifndef NEW_GC |
1204 | 31 extern const struct sized_memory_description stream_console_data_description; |
3092 | 32 #endif /* not NEW_GC */ |
1204 | 33 |
428 | 34 extern Lisp_Object Vterminal_console, Vterminal_frame, Vterminal_device; |
35 | |
872 | 36 Lisp_Object stream_semi_canonicalize_console_connection (Lisp_Object, |
37 Error_Behavior); | |
38 Lisp_Object stream_canonicalize_console_connection (Lisp_Object, | |
39 Error_Behavior); | |
40 Lisp_Object stream_semi_canonicalize_device_connection (Lisp_Object, | |
578 | 41 Error_Behavior); |
872 | 42 Lisp_Object stream_canonicalize_device_connection (Lisp_Object, |
578 | 43 Error_Behavior); |
440 | 44 #endif /* INCLUDED_console_stream_h_ */ |