emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lispref/display.texi


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lispref/display.texi
Date: Fri, 04 Apr 2003 01:23:21 -0500

Index: emacs/lispref/display.texi
diff -c emacs/lispref/display.texi:1.91 emacs/lispref/display.texi:1.92
*** emacs/lispref/display.texi:1.91     Mon Dec 23 13:13:17 2002
--- emacs/lispref/display.texi  Tue Feb  4 09:47:53 2003
***************
*** 1,7 ****
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 
2002
! @c   Free Software Foundation, Inc. 
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/display
  @node Display, Calendar, Processes, Top
--- 1,7 ----
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 
2002
! @c   Free Software Foundation, Inc.
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/display
  @node Display, Calendar, Processes, Top
***************
*** 409,417 ****
  
  @example
  ;; @r{If you want to display an ellipsis:}
! (add-to-invisibility-spec '(my-symbol . t)) 
  ;; @r{If you don't want ellipsis:}
! (add-to-invisibility-spec 'my-symbol) 
  
  (overlay-put (make-overlay beginning end)
               'invisible 'my-symbol)
--- 409,417 ----
  
  @example
  ;; @r{If you want to display an ellipsis:}
! (add-to-invisibility-spec '(my-symbol . t))
  ;; @r{If you don't want ellipsis:}
! (add-to-invisibility-spec 'my-symbol)
  
  (overlay-put (make-overlay beginning end)
               'invisible 'my-symbol)
***************
*** 483,489 ****
  
  @defvar selective-display
  This buffer-local variable enables selective display.  This means that
! lines, or portions of lines, may be made invisible.  
  
  @itemize @bullet
  @item
--- 483,489 ----
  
  @defvar selective-display
  This buffer-local variable enables selective display.  This means that
! lines, or portions of lines, may be made invisible.
  
  @itemize @bullet
  @item
***************
*** 1336,1342 ****
  customize using the Customization buffer (@pxref{Easy Customization,,,
  emacs, The GNU Emacs Manual}).
  
! @defmac defface face spec doc [keyword value]... 
  This declares @var{face} as a customizable face that defaults according
  to @var{spec}.  You should not quote the symbol @var{face}.  The
  argument @var{doc} specifies the face documentation.  The keywords you
--- 1336,1342 ----
  customize using the Customization buffer (@pxref{Easy Customization,,,
  emacs, The GNU Emacs Manual}).
  
! @defmac defface face spec doc [keyword value]...
  This declares @var{face} as a customizable face that defaults according
  to @var{spec}.  You should not quote the symbol @var{face}.  The
  argument @var{doc} specifies the face documentation.  The keywords you
***************
*** 1473,1485 ****
  @code{extra-condensed}, @code{condensed}, @code{semi-condensed},
  @code{normal}, @code{semi-expanded}, @code{expanded},
  @code{extra-expanded}, or @code{ultra-expanded}.
!    
  @item :height
  Either the font height, an integer in units of 1/10 point, a floating
  point number specifying the amount by which to scale the height of any
  underlying face, or a function, which is called with the old height
  (from the underlying face), and should return the new height.
!    
  @item :weight
  Font weight---a symbol from this series (from most dense to most faint):
  @code{ultra-bold}, @code{extra-bold}, @code{bold}, @code{semi-bold},
--- 1473,1485 ----
  @code{extra-condensed}, @code{condensed}, @code{semi-condensed},
  @code{normal}, @code{semi-expanded}, @code{expanded},
  @code{extra-expanded}, or @code{ultra-expanded}.
! 
  @item :height
  Either the font height, an integer in units of 1/10 point, a floating
  point number specifying the amount by which to scale the height of any
  underlying face, or a function, which is called with the old height
  (from the underlying face), and should return the new height.
! 
  @item :weight
  Font weight---a symbol from this series (from most dense to most faint):
  @code{ultra-bold}, @code{extra-bold}, @code{bold}, @code{semi-bold},
***************
*** 1499,1505 ****
  
  @item :foreground
  Foreground color, a string.
!    
  @item :background
  Background color, a string.
  
--- 1499,1505 ----
  
  @item :foreground
  Foreground color, a string.
! 
  @item :background
  Background color, a string.
  
***************
*** 1852,1858 ****
  highlighted with the face @code{region} (@pxref{Standard Faces}).
  
  @item
! With special glyphs.  Each glyph can specify a particular face 
  number.  @xref{Glyphs}.
  @end itemize
  
--- 1852,1858 ----
  highlighted with the face @code{region} (@pxref{Standard Faces}).
  
  @item
! With special glyphs.  Each glyph can specify a particular face
  number.  @xref{Glyphs}.
  @end itemize
  
***************
*** 2285,2291 ****
  @menu
  * Specified Space::     Displaying one space with a specified width.
  * Other Display Specs:: Displaying an image; magnifying text; moving it
!                           up or down on the page; adjusting the width 
                            of spaces within text.
  * Display Margins::     Displaying text or images to the side of the main 
text.
  * Conditional Display:: Making any of the above features conditional
--- 2285,2291 ----
  @menu
  * Specified Space::     Displaying one space with a specified width.
  * Other Display Specs:: Displaying an image; magnifying text; moving it
!                           up or down on the page; adjusting the width
                            of spaces within text.
  * Display Margins::     Displaying text or images to the side of the main 
text.
  * Conditional Display:: Making any of the above features conditional
***************
*** 2465,2471 ****
  @defun set-window-margins window left &optional right
  @tindex set-window-margins
  This function specifies the margin widths for window @var{window}.
! The argument @var{left} controls the left margin and 
  @var{right} controls the right margin (default @code{0}).
  @end defun
  
--- 2465,2471 ----
  @defun set-window-margins window left &optional right
  @tindex set-window-margins
  This function specifies the margin widths for window @var{window}.
! The argument @var{left} controls the left margin and
  @var{right} controls the right margin (default @code{0}).
  @end defun
  
***************
*** 3409,3415 ****
  
  @defvar glyph-table
  The value of this variable is the current glyph table.  It should be a
! vector; the @var{g}th element defines glyph code @var{g}.  
  
  If a glyph code is greater than or equal to the length of the glyph
  table, that code is automatically simple.  If the value of
--- 3409,3415 ----
  
  @defvar glyph-table
  The value of this variable is the current glyph table.  It should be a
! vector; the @var{g}th element defines glyph code @var{g}.
  
  If a glyph code is greater than or equal to the length of the glyph
  table, that code is automatically simple.  If the value of




reply via email to

[Prev in Thread] Current Thread [Next in Thread]