aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-15 15:00:53 +0000
committerEli Zaretskii2008-10-15 15:00:53 +0000
commit52441368d6fec82d39b657899bda401b7b854176 (patch)
tree6a397a50dda60ddc54244a410f33ec92c937db1a
parent8e8c1a72149bf3d10d995979f4e76c3d38352820 (diff)
downloademacs-52441368d6fec82d39b657899bda401b7b854176.tar.gz
emacs-52441368d6fec82d39b657899bda401b7b854176.zip
(List Motion): beginning-of-defun-function can now accept an argument.
-rw-r--r--doc/lispref/ChangeLog3
-rw-r--r--doc/lispref/positions.texi5
-rw-r--r--etc/NEWS1
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 @@
12008-10-15 Eli Zaretskii <eliz@gnu.org> 12008-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
738If non-@code{nil}, this variable holds a function for finding the 738If non-@code{nil}, this variable holds a function for finding the
739beginning of a defun. The function @code{beginning-of-defun} 739beginning of a defun. The function @code{beginning-of-defun}
740calls this function instead of using its normal method. 740calls this function instead of using its normal method, passing it its
741optional argument. If the argument is non-@code{nil}, the function
742should 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
diff --git a/etc/NEWS b/etc/NEWS
index 151f9a096c7..f4c401b43c9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
1152given to `beginning-of-defun'. 1153given to `beginning-of-defun'.
1153 1154