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


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lispref/positions.texi
Date: Sun, 06 Feb 2005 05:54:05 -0500

Index: emacs/lispref/positions.texi
diff -c emacs/lispref/positions.texi:1.48 emacs/lispref/positions.texi:1.49
*** emacs/lispref/positions.texi:1.48   Sun Nov 21 14:37:29 2004
--- emacs/lispref/positions.texi        Sun Feb  6 10:54:05 2005
***************
*** 165,187 ****
  @c @kindex end-of-buffer
  This function moves point @var{count} characters forward, towards the
  end of the buffer (or backward, towards the beginning of the buffer, if
! @var{count} is negative).  If the function attempts to move point past
! the beginning or end of the buffer (or the limits of the accessible
! portion, when narrowing is in effect), an error is signaled with error
! code @code{beginning-of-buffer} or @code{end-of-buffer}.
  
  In an interactive call, @var{count} is the numeric prefix argument.
  @end deffn
  
  @deffn Command backward-char &optional count
! This function moves point @var{count} characters backward, towards the
! beginning of the buffer (or forward, towards the end of the buffer, if
! @var{count} is negative).  If the function attempts to move point past
! the beginning or end of the buffer (or the limits of the accessible
! portion, when narrowing is in effect), an error is signaled with error
! code @code{beginning-of-buffer} or @code{end-of-buffer}.
! 
! In an interactive call, @var{count} is the numeric prefix argument.
  @end deffn
  
  @node Word Motion
--- 165,184 ----
  @c @kindex end-of-buffer
  This function moves point @var{count} characters forward, towards the
  end of the buffer (or backward, towards the beginning of the buffer, if
! @var{count} is negative).  If @var{count} is @code{nil}, the default
! is 1.
! 
! If this attempts to move past the beginning or end of the buffer (or
! the limits of the accessible portion, when narrowing is in effect), it
! signals an error with error symbol @code{beginning-of-buffer} or
! @code{end-of-buffer}.
  
  In an interactive call, @var{count} is the numeric prefix argument.
  @end deffn
  
  @deffn Command backward-char &optional count
! This is just like @code{forward-char} except that it moves
! in the opposite direction.
  @end deffn
  
  @node Word Motion
***************
*** 192,203 ****
  
  @deffn Command forward-word &optional count
  This function moves point forward @var{count} words (or backward if
! @var{count} is negative).  ``Moving one word'' means moving until point
! crosses a word-constituent character and then encounters a
! word-separator character.  However, this function cannot move point past
! the boundary of the accessible portion of the buffer, or across a field
! boundary (@pxref{Fields}).  The most common case of a field boundary is
! the end of the prompt in the minibuffer.
  
  If it is possible to move @var{count} words, without being stopped
  prematurely by the buffer boundary or a field boundary, the value is
--- 189,203 ----
  
  @deffn Command forward-word &optional count
  This function moves point forward @var{count} words (or backward if
! @var{count} is negative).  If @var{count} is @code{nil}, it moves
! forward one word.
! 
! ``Moving one word'' means moving until point crosses a
! word-constituent character and then encounters a word-separator
! character.  However, this function cannot move point past the boundary
! of the accessible portion of the buffer, or across a field boundary
! (@pxref{Fields}).  The most common case of a field boundary is the end
! of the prompt in the minibuffer.
  
  If it is possible to move @var{count} words, without being stopped
  prematurely by the buffer boundary or a field boundary, the value is
***************
*** 258,279 ****
  @deffn Command beginning-of-buffer &optional n
  This function moves point to the beginning of the buffer (or the limits
  of the accessible portion, when narrowing is in effect), setting the
! mark at the previous position.  If @var{n} is address@hidden, then it
! puts point @var{n} tenths of the way from the beginning of the
! accessible portion of the buffer.
  
! In an interactive call, @var{n} is the numeric prefix argument,
! if provided; otherwise @var{n} defaults to @code{nil}.
  
  @strong{Warning:} Don't use this function in Lisp programs!
  @end deffn
  
  @deffn Command end-of-buffer &optional n
! This function moves point to the end of the buffer (or the limits of the
! accessible portion, when narrowing is in effect), setting the mark at
! the previous position.  If @var{n} is address@hidden, then it puts point
! @var{n} tenths of the way from the end of the accessible portion of the
! buffer.
  
  In an interactive call, @var{n} is the numeric prefix argument,
  if provided; otherwise @var{n} defaults to @code{nil}.
--- 258,281 ----
  @deffn Command beginning-of-buffer &optional n
  This function moves point to the beginning of the buffer (or the limits
  of the accessible portion, when narrowing is in effect), setting the
! mark at the previous position (except in Transient Mark mode, if
! the mark is already active, it does not set the mark.)
  
! If @var{n} is address@hidden, then it puts point @var{n} tenths of the
! way from the beginning of the accessible portion of the buffer.  In an
! interactive call, @var{n} is the numeric prefix argument, if provided;
! otherwise @var{n} defaults to @code{nil}.
  
  @strong{Warning:} Don't use this function in Lisp programs!
  @end deffn
  
  @deffn Command end-of-buffer &optional n
! This function moves point to the end of the buffer (or the limits of
! the accessible portion, when narrowing is in effect), setting the mark
! at the previous position (except in Transient Mark mode when the mark
! is already active).  If @var{n} is address@hidden, then it puts point
! @var{n} tenths of the way from the end of the accessible portion of
! the buffer.
  
  In an interactive call, @var{n} is the numeric prefix argument,
  if provided; otherwise @var{n} defaults to @code{nil}.
***************
*** 373,379 ****
  the line.  If @var{count} is negative, it moves point
  @address@hidden lines backward, to the beginning of a line.  If
  @var{count} is zero, it moves point to the beginning of the current
! line.
  
  If @code{forward-line} encounters the beginning or end of the buffer (or
  of the accessible portion) before finding that many lines, it sets point
--- 375,381 ----
  the line.  If @var{count} is negative, it moves point
  @address@hidden lines backward, to the beginning of a line.  If
  @var{count} is zero, it moves point to the beginning of the current
! line.  If @var{count} is @code{nil}, that means 1.
  
  If @code{forward-line} encounters the beginning or end of the buffer (or
  of the accessible portion) before finding that many lines, it sets point
***************
*** 703,715 ****
  @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.
  @end deffn
  
  @defopt defun-prompt-regexp
--- 705,719 ----
  @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.  @var{arg} defaults
! to 1.
  @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.  @var{arg} defaults
! to 1.
  @end deffn
  
  @defopt defun-prompt-regexp
***************
*** 761,772 ****
  continues until it reaches a character that does not match.  The
  function returns the number of characters moved over.
  
! The argument @var{character-set} is like the inside of a
! @address@hidden in a regular expression except that @samp{]} is never
! special and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}.  Thus,
! @code{"a-zA-Z"} skips over all letters, stopping before the first
! nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before the
! first letter.  @xref{Regular Expressions}.
  
  If @var{limit} is supplied (it must be a number or a marker), it
  specifies the maximum position in the buffer that point can be skipped
--- 765,776 ----
  continues until it reaches a character that does not match.  The
  function returns the number of characters moved over.
  
! The argument @var{character-set} is a string, like the inside of a
! @address@hidden in a regular expression except that @samp{]} does not
! terminate it, and @samp{\} quotes @samp{^}, @samp{-} or @samp{\}.
! Thus, @code{"a-zA-Z"} skips over all letters, stopping before the
! first nonletter, and @code{"^a-zA-Z"} skips nonletters stopping before
! the first letter.  @xref{Regular Expressions}.
  
  If @var{limit} is supplied (it must be a number or a marker), it
  specifies the maximum position in the buffer that point can be skipped




reply via email to

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