emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lispref/text.texi
Date: Tue, 04 Feb 2003 09:48:11 -0500

Index: emacs/lispref/text.texi
diff -c emacs/lispref/text.texi:1.58 emacs/lispref/text.texi:1.59
*** emacs/lispref/text.texi:1.58        Mon Jan 13 03:01:09 2003
--- emacs/lispref/text.texi     Tue Feb  4 09:47:54 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
! @c   Free Software Foundation, Inc. 
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/text
  @node Text, Non-ASCII Characters, Markers, 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
! @c   Free Software Foundation, Inc.
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/text
  @node Text, Non-ASCII Characters, Markers, Top
***************
*** 429,435 ****
  loop handles this function specially.
  @end deffn
  
! @deffn Command newline &optional number-of-newlines 
  This command inserts newlines into the current buffer before point.
  If @var{number-of-newlines} is supplied, that many newline characters
  are inserted.
--- 429,435 ----
  loop handles this function specially.
  @end deffn
  
! @deffn Command newline &optional number-of-newlines
  This command inserts newlines into the current buffer before point.
  If @var{number-of-newlines} is supplied, that many newline characters
  are inserted.
***************
*** 614,620 ****
  @end example
  @end deffn
  
! @deffn Command delete-indentation &optional join-following-p 
  This function joins the line point is on to the previous line, deleting
  any whitespace at the join and in some cases replacing it with one
  space.  If @var{join-following-p} is address@hidden,
--- 614,620 ----
  @end example
  @end deffn
  
! @deffn Command delete-indentation &optional join-following-p
  This function joins the line point is on to the previous line, deleting
  any whitespace at the join and in some cases replacing it with one
  space.  If @var{join-following-p} is address@hidden,
***************
*** 945,951 ****
  
    The variable @code{kill-ring} holds the kill ring contents, in the
  form of a list of strings.  The most recent kill is always at the front
! of the list. 
  
    The @code{kill-ring-yank-pointer} variable points to a link in the
  kill ring list, whose @sc{car} is the text to yank next.  We say it
--- 945,951 ----
  
    The variable @code{kill-ring} holds the kill ring contents, in the
  form of a list of strings.  The most recent kill is always at the front
! of the list.
  
    The @code{kill-ring-yank-pointer} variable points to a link in the
  kill ring list, whose @sc{car} is the text to yank next.  We say it
***************
*** 970,976 ****
  
    Here is a diagram that shows the variable @code{kill-ring-yank-pointer}
  pointing to the second entry in the kill ring @code{("some text" "a
! different piece of text" "yet older text")}.  
  
  @example
  @group
--- 970,976 ----
  
    Here is a diagram that shows the variable @code{kill-ring-yank-pointer}
  pointing to the second entry in the kill ring @code{("some text" "a
! different piece of text" "yet older text")}.
  
  @example
  @group
***************
*** 980,990 ****
    |     --- ---          --- ---      --- ---
     --> |   |   |------> |   |   |--> |   |   |--> nil
          --- ---          --- ---      --- ---
!          |                |            |            
!          |                |            |            
!          |                |             -->"yet older text" 
           |                |
!          |                 --> "a different piece of text" 
           |
            --> "some text"
  @end group
--- 980,990 ----
    |     --- ---          --- ---      --- ---
     --> |   |   |------> |   |   |--> |   |   |--> nil
          --- ---          --- ---      --- ---
!          |                |            |
!          |                |            |
!          |                |             -->"yet older text"
           |                |
!          |                 --> "a different piece of text"
           |
            --> "some text"
  @end group
***************
*** 1040,1046 ****
  
  @item (@var{beg} . @var{end})
  This kind of element indicates how to delete text that was inserted.
! Upon insertion, the text occupied the range @address@hidden in the 
  buffer.
  
  @item (@var{text} . @var{position})
--- 1040,1046 ----
  
  @item (@var{beg} . @var{end})
  This kind of element indicates how to delete text that was inserted.
! Upon insertion, the text occupied the range @address@hidden in the
  buffer.
  
  @item (@var{text} . @var{position})
***************
*** 2123,2129 ****
    These commands, primarily for interactive use, act based on the
  indentation in the text.
  
! @deffn Command back-to-indentation 
  @comment !!SourceFile simple.el
  This command moves point to the first non-whitespace character in the
  current line (which is the line in which point is located).  It returns
--- 2123,2129 ----
    These commands, primarily for interactive use, act based on the
  indentation in the text.
  
! @deffn Command back-to-indentation
  @comment !!SourceFile simple.el
  This command moves point to the first non-whitespace character in the
  current line (which is the line in which point is located).  It returns
***************
*** 2509,2515 ****
  @var{pos}.
  
  If @var{limit} is address@hidden, then the scan ends at position
! @var{limit}.  If there is no property change before that point, 
  @code{next-property-change} returns @var{limit}.
  
  The value is @code{nil} if the properties remain unchanged all the way
--- 2509,2515 ----
  @var{pos}.
  
  If @var{limit} is address@hidden, then the scan ends at position
! @var{limit}.  If there is no property change before that point,
  @code{next-property-change} returns @var{limit}.
  
  The value is @code{nil} if the properties remain unchanged all the way
***************
*** 2540,2546 ****
  @var{pos}.
  
  If @var{limit} is address@hidden, then the scan ends at position
! @var{limit}.  If there is no property change before that point, 
  @code{next-single-property-change} returns @var{limit}.
  
  The value is @code{nil} if the property remains unchanged all the way to
--- 2540,2546 ----
  @var{pos}.
  
  If @var{limit} is address@hidden, then the scan ends at position
! @var{limit}.  If there is no property change before that point,
  @code{next-single-property-change} returns @var{limit}.
  
  The value is @code{nil} if the property remains unchanged all the way to
***************
*** 3052,3058 ****
  
  We invite users to write Lisp programs to store and retrieve text
  properties in files, using these hooks, and thus to experiment with
! various data formats and find good ones.  Eventually we hope users 
  will produce good, general extensions we can install in Emacs.
  
  We suggest not trying to handle arbitrary Lisp objects as text property
--- 3052,3058 ----
  
  We invite users to write Lisp programs to store and retrieve text
  properties in files, using these hooks, and thus to experiment with
! various data formats and find good ones.  Eventually we hope users
  will produce good, general extensions we can install in Emacs.
  
  We suggest not trying to handle arbitrary Lisp objects as text property




reply via email to

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