Show
Ignore:
Timestamp:
07/29/06 07:48:34 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lispref/display.texi

    r4111 r4131  
    104104redisplay, and redisplay cannot be preempted by input. 
    105105 
    106 @emph{Note} that this variable is only available if Emacs is built 
    107 with support for sub-second timers
     106This variable is only obeyed on graphical terminals.  For 
     107text terminals, see @ref{Terminal Output}
    108108@end defvar 
    109109 
     
    142142terminal, a @samp{$} in the rightmost column of the window indicates 
    143143truncation; a @samp{\} on the rightmost column indicates a line that 
    144 ``wraps''.  (The display table can specify alternate characters to use 
     144``wraps.''  (The display table can specify alternate characters to use 
    145145for this; @pxref{Display Tables}). 
    146146 
     
    11901190not try modifying the markers in the overlay by hand, as that fails to 
    11911191update other vital data structures and can cause some overlays to be 
    1192 ``lost''. 
     1192``lost.'' 
    11931193@end defun 
    11941194 
     
    20142014@end table 
    20152015 
    2016   For compatibility, you can still set these ``attributes'', even 
     2016  For compatibility, you can still set these ``attributes,'' even 
    20172017though they are not real face attributes.  Here is what that does: 
    20182018 
     
    37683768 
    37693769@item disabled 
    3770 Specifies transforming the image so that it looks ``disabled''. 
     3770Specifies transforming the image so that it looks ``disabled.'' 
    37713771@end table 
    37723772 
     
    48054805 
    48064806  Here is a simple example using functions of the ewoc package to 
    4807 implement a ``color components display'', an area in a buffer that 
     4807implement a ``color components display,'' an area in a buffer that 
    48084808represents a vector of three integers (itself representing a 24-bit RGB 
    48094809value) in various ways. 
     
    53215321 
    53225322  Emacs works with several window systems, most notably the X Window 
    5323 System.  Both Emacs and X use the term ``window'', but use it 
     5323System.  Both Emacs and X use the term ``window,'' but use it 
    53245324differently.  An Emacs frame is a single window as far as X is 
    53255325concerned; the individual Emacs windows are not known to X at all.