aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-06-26 07:19:01 +0000
committerGlenn Morris2008-06-26 07:19:01 +0000
commitc123f7fe96ddd7d453cb124eec16b481ef285dd2 (patch)
tree4557539ebf75660defe658da2479d22bfa109d3c
parent7ec4149077883e615dcdf128d634a543a2dce36d (diff)
downloademacs-c123f7fe96ddd7d453cb124eec16b481ef285dd2.tar.gz
emacs-c123f7fe96ddd7d453cb124eec16b481ef285dd2.zip
(bookmark-make-record-default): Fix declaration.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/doc-view.el3
-rw-r--r--lisp/image-mode.el3
3 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d6dc665939c..4f20fca7712 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -14,6 +14,9 @@
14 14
152008-06-26 Glenn Morris <rgm@gnu.org> 152008-06-26 Glenn Morris <rgm@gnu.org>
16 16
17 * doc-view.el (bookmark-make-record-default):
18 * image-mode.el (bookmark-make-record-default): Fix declaration.
19
17 * calendar/calendar.el (calendar-date-echo-text): Doc fix. 20 * calendar/calendar.el (calendar-date-echo-text): Doc fix.
18 Add default :value for sexp type. 21 Add default :value for sexp type.
19 (calendar-month-edges): New variable. 22 (calendar-month-edges): New variable.
diff --git a/lisp/doc-view.el b/lisp/doc-view.el
index d9120e9aa31..dd7af41cd7a 100644
--- a/lisp/doc-view.el
+++ b/lisp/doc-view.el
@@ -1187,7 +1187,8 @@ See the command `doc-view-mode' for more information on this mode."
1187 1187
1188;;;; Bookmark integration 1188;;;; Bookmark integration
1189 1189
1190(declare-function bookmark-make-record-default "bookmark" ()) 1190(declare-function bookmark-make-record-default "bookmark"
1191 (&optional point-only))
1191(declare-function bookmark-prop-get "bookmark" (bookmark prop)) 1192(declare-function bookmark-prop-get "bookmark" (bookmark prop))
1192(declare-function bookmark-default-handler "bookmark" (bmk)) 1193(declare-function bookmark-default-handler "bookmark" (bmk))
1193 1194
diff --git a/lisp/image-mode.el b/lisp/image-mode.el
index 56c4e80284f..00f222586b2 100644
--- a/lisp/image-mode.el
+++ b/lisp/image-mode.el
@@ -467,7 +467,8 @@ and showing the image as an image."
467 (message "Repeat this command to go back to displaying the file as text"))))) 467 (message "Repeat this command to go back to displaying the file as text")))))
468 468
469;;; Support for bookmark.el 469;;; Support for bookmark.el
470(declare-function bookmark-make-record-default "bookmark" ()) 470(declare-function bookmark-make-record-default "bookmark"
471 (&optional point-only))
471(declare-function bookmark-prop-get "bookmark" (bookmark prop)) 472(declare-function bookmark-prop-get "bookmark" (bookmark prop))
472(declare-function bookmark-default-handler "bookmark" (bmk)) 473(declare-function bookmark-default-handler "bookmark" (bmk))
473 474