diff options
| author | Eli Zaretskii | 2008-10-15 15:00:53 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-10-15 15:00:53 +0000 |
| commit | 52441368d6fec82d39b657899bda401b7b854176 (patch) | |
| tree | 6a397a50dda60ddc54244a410f33ec92c937db1a | |
| parent | 8e8c1a72149bf3d10d995979f4e76c3d38352820 (diff) | |
| download | emacs-52441368d6fec82d39b657899bda401b7b854176.tar.gz emacs-52441368d6fec82d39b657899bda401b7b854176.zip | |
(List Motion): beginning-of-defun-function can now accept an argument.
| -rw-r--r-- | doc/lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispref/positions.texi | 5 | ||||
| -rw-r--r-- | etc/NEWS | 1 |
3 files changed, 8 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index a0ffb90ffba..6a264625112 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-10-15 Eli Zaretskii <eliz@gnu.org> | 1 | 2008-10-15 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * positions.texi (List Motion): beginning-of-defun-function can | ||
| 4 | now accept an argument. | ||
| 5 | |||
| 3 | * text.texi (Low-Level Kill Ring): interprogram-paste-function can | 6 | * text.texi (Low-Level Kill Ring): interprogram-paste-function can |
| 4 | now return a list of strings. | 7 | now return a list of strings. |
| 5 | 8 | ||
diff --git a/doc/lispref/positions.texi b/doc/lispref/positions.texi index 2729b66e746..452d6e4ca3c 100644 --- a/doc/lispref/positions.texi +++ b/doc/lispref/positions.texi | |||
| @@ -737,7 +737,10 @@ The default is @code{t}. | |||
| 737 | @defvar beginning-of-defun-function | 737 | @defvar beginning-of-defun-function |
| 738 | If non-@code{nil}, this variable holds a function for finding the | 738 | If non-@code{nil}, this variable holds a function for finding the |
| 739 | beginning of a defun. The function @code{beginning-of-defun} | 739 | beginning of a defun. The function @code{beginning-of-defun} |
| 740 | calls this function instead of using its normal method. | 740 | calls this function instead of using its normal method, passing it its |
| 741 | optional argument. If the argument is non-@code{nil}, the function | ||
| 742 | should move back by that many functions, like | ||
| 743 | @code{beginning-of-defun} does. | ||
| 741 | @end defvar | 744 | @end defvar |
| 742 | 745 | ||
| 743 | @defvar end-of-defun-function | 746 | @defvar end-of-defun-function |
| @@ -1148,6 +1148,7 @@ like this: | |||
| 1148 | +++ | 1148 | +++ |
| 1149 | ** clone-indirect-buffer now runs the clone-indirect-buffer-hook. | 1149 | ** clone-indirect-buffer now runs the clone-indirect-buffer-hook. |
| 1150 | 1150 | ||
| 1151 | +++ | ||
| 1151 | ** `beginning-of-defun-function' now takes one argument, the count | 1152 | ** `beginning-of-defun-function' now takes one argument, the count |
| 1152 | given to `beginning-of-defun'. | 1153 | given to `beginning-of-defun'. |
| 1153 | 1154 | ||