emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lispref/positions.texi [lexbind]
Date: Thu, 20 Nov 2003 19:36:48 -0500

Index: emacs/lispref/positions.texi
diff -c emacs/lispref/positions.texi:1.31.4.2 
emacs/lispref/positions.texi:1.31.4.3
*** emacs/lispref/positions.texi:1.31.4.2       Tue Oct 14 19:10:12 2003
--- emacs/lispref/positions.texi        Thu Nov 20 19:35:47 2003
***************
*** 89,96 ****
  @end defun
  
  @defun buffer-end flag
! This function returns @code{(point-min)} if @var{flag} is less than 1,
! @code{(point-max)} otherwise.  The argument @var{flag} must be a number.
  @end defun
  
  @defun buffer-size &optional buffer
--- 89,97 ----
  @end defun
  
  @defun buffer-end flag
! This function returns @code{(point-max)} if @var{flag} is greater than
! 0, @code{(point-min)} otherwise.  The argument @var{flag} must be a
! number.
  @end defun
  
  @defun buffer-size &optional buffer
***************
*** 655,662 ****
  @end deffn
  
  @deffn Command down-list &optional arg
! This function moves forward into @var{arg} (default 1) levels of parentheses. 
 A
! negative argument means move backward but still go
  deeper in parentheses (@address@hidden levels).
  @end deffn
  
--- 656,663 ----
  @end deffn
  
  @deffn Command down-list &optional arg
! This function moves forward into @var{arg} (default 1) levels of
! parentheses.  A negative argument means move backward but still go
  deeper in parentheses (@address@hidden levels).
  @end deffn
  
***************
*** 688,700 ****
  This function moves backward across @var{arg} (default 1) balanced 
expressions.
  @end deffn
  
! @deffn Command beginning-of-defun arg
  This function moves back to the @var{arg}th beginning of a defun.  If
  @var{arg} is negative, this actually moves forward, but it still moves
  to the beginning of a defun, not to the end of one.
  @end deffn
  
! @deffn Command end-of-defun arg
  This function moves forward to the @var{arg}th end of a defun.  If
  @var{arg} is negative, this actually moves backward, but it still moves
  to the end of a defun, not to the beginning of one.
--- 689,701 ----
  This function moves backward across @var{arg} (default 1) balanced 
expressions.
  @end deffn
  
! @deffn Command beginning-of-defun &optional arg
  This function moves back to the @var{arg}th beginning of a defun.  If
  @var{arg} is negative, this actually moves forward, but it still moves
  to the beginning of a defun, not to the end of one.
  @end deffn
  
! @deffn Command end-of-defun &optional arg
  This function moves forward to the @var{arg}th end of a defun.  If
  @var{arg} is negative, this actually moves backward, but it still moves
  to the end of a defun, not to the beginning of one.
***************
*** 787,793 ****
  Note that char classes are not currently supported in
  @var{character-set}; they will be treated as literals.  Thus you
  cannot use @code{"[:alpha:]"} instead of @code{"a-zA-Z"} to include
! non-ASCII letters.  A way to skip forward over all letters is:
  
  @example
  (re-search-forward "\\=[[:alpha:]]*" nil t)
--- 788,794 ----
  Note that char classes are not currently supported in
  @var{character-set}; they will be treated as literals.  Thus you
  cannot use @code{"[:alpha:]"} instead of @code{"a-zA-Z"} to include
! address@hidden letters.  A way to skip forward over all letters is:
  
  @example
  (re-search-forward "\\=[[:alpha:]]*" nil t)
***************
*** 867,874 ****
  
    @strong{Warning:} Ordinary insertion of text adjacent to the saved
  point value relocates the saved value, just as it relocates all markers.
! Therefore, when the saved point value is restored, it normally comes
! before the inserted text.
  
    Although @code{save-excursion} saves the location of the mark, it does
  not prevent functions which modify the buffer from setting
--- 868,876 ----
  
    @strong{Warning:} Ordinary insertion of text adjacent to the saved
  point value relocates the saved value, just as it relocates all markers.
! More precisely, the saved value is a marker with insertion type
! @code{nil}.  @xref{Marker Insertion Types}.  Therefore, when the saved
! point value is restored, it normally comes before the inserted text.
  
    Although @code{save-excursion} saves the location of the mark, it does
  not prevent functions which modify the buffer from setting
***************
*** 909,915 ****
  of the current region (point and the mark, with the smallest first).
  @end deffn
  
! @deffn Command narrow-to-page move-count
  This function sets the accessible portion of the current buffer to
  include just the current page.  An optional first argument
  @var{move-count} address@hidden means to move forward or backward by
--- 911,917 ----
  of the current region (point and the mark, with the smallest first).
  @end deffn
  
! @deffn Command narrow-to-page &optional move-count
  This function sets the accessible portion of the current buffer to
  include just the current page.  An optional first argument
  @var{move-count} address@hidden means to move forward or backward by




reply via email to

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