Mercurial > hg > xemacs-beta
comparison man/lispref/display.texi @ 371:cc15677e0335 r21-2b1
Import from CVS: tag r21-2b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:03:08 +0200 |
parents | a4f53d9b3154 |
children | 6240c7796c7a |
comparison
equal
deleted
inserted
replaced
370:bd866891f083 | 371:cc15677e0335 |
---|---|
162 @code{message} primitive, and for echoing keystrokes. It is not the | 162 @code{message} primitive, and for echoing keystrokes. It is not the |
163 same as the minibuffer, despite the fact that the minibuffer appears | 163 same as the minibuffer, despite the fact that the minibuffer appears |
164 (when active) in the same place on the screen as the echo area. The | 164 (when active) in the same place on the screen as the echo area. The |
165 @cite{XEmacs Reference Manual} specifies the rules for resolving conflicts | 165 @cite{XEmacs Reference Manual} specifies the rules for resolving conflicts |
166 between the echo area and the minibuffer for use of that screen space | 166 between the echo area and the minibuffer for use of that screen space |
167 (@pxref{Minibuffer,, The Minibuffer, xemacs, The XEmacs Reference Manual}). | 167 (@pxref{Minibuffer,, The Minibuffer, emacs, The XEmacs Reference Manual}). |
168 Error messages appear in the echo area; see @ref{Errors}. | 168 Error messages appear in the echo area; see @ref{Errors}. |
169 | 169 |
170 You can write output in the echo area by using the Lisp printing | 170 You can write output in the echo area by using the Lisp printing |
171 functions with @code{t} as the stream (@pxref{Output Functions}), or as | 171 functions with @code{t} as the stream (@pxref{Output Functions}), or as |
172 follows: | 172 follows: |
357 other problematic situations. Unlike messages, warnings are displayed | 357 other problematic situations. Unlike messages, warnings are displayed |
358 in a separate buffer, and include an explanatory message that may span | 358 in a separate buffer, and include an explanatory message that may span |
359 across several lines. Here is an example of how a warning is displayed: | 359 across several lines. Here is an example of how a warning is displayed: |
360 | 360 |
361 @example | 361 @example |
362 (1) (initialization/error) An error has occurred while loading ~/.emacs: | 362 (1) (initialization/error) An error has occured while loading ~/.emacs: |
363 | 363 |
364 Symbol's value as variable is void: bogus-variable | 364 Symbol's value as variable is void: bogus-variable |
365 | 365 |
366 To ensure normal operation, you should investigate the cause of the error | 366 To ensure normal operation, you should investigate the cause of the error |
367 in your initialization file and remove it. Use the `-debug-init' option | 367 in your initialization file and remove it. Use the `-debug-init' option |
497 Ultimately, a character is invisible if any of the elements of this list | 497 Ultimately, a character is invisible if any of the elements of this list |
498 applies to it. The list can have two kinds of elements: | 498 applies to it. The list can have two kinds of elements: |
499 | 499 |
500 @table @code | 500 @table @code |
501 @item @var{atom} | 501 @item @var{atom} |
502 A character is invisible if its @code{invisible} property value | 502 A character is invisible if its @code{invisible} propery value |
503 is @var{atom} or if it is a list with @var{atom} as a member. | 503 is @var{atom} or if it is a list with @var{atom} as a member. |
504 | 504 |
505 @item (@var{atom} . t) | 505 @item (@var{atom} . t) |
506 A character is invisible if its @code{invisible} property value | 506 A character is invisible if its @code{invisible} propery value |
507 is @var{atom} or if it is a list with @var{atom} as a member. | 507 is @var{atom} or if it is a list with @var{atom} as a member. |
508 Moreover, if this character is at the end of a line and is followed | 508 Moreover, if this character is at the end of a line and is followed |
509 by a visible newline, it displays an ellipsis. | 509 by a visible newline, it displays an ellipsis. |
510 @end table | 510 @end table |
511 @end table | 511 @end table |