diff options
| author | Glenn Morris <rgm@gnu.org> | 2008-01-04 03:12:43 +0000 | 
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2008-01-04 03:12:43 +0000 | 
| commit | a47d49c0f6ce0299cdee0a4cab4d6953d22c3c8b (patch) | |
| tree | 6a4603d8602d50ae2947583b3346484f5574e1a8 /lisp | |
| parent | 069b4ce3f683e4d8e4b7b426fdf99264e2500fc7 (diff) | |
| download | emacs-a47d49c0f6ce0299cdee0a4cab4d6953d22c3c8b.tar.gz | |
(bookmark-make-cell-function)
(bookmark-get-filename, bookmark-get-bookmark-record)
(bookmark-get-position): Declare for compiler.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/image-mode.el | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 98f4fa81968..6b02db50134 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -1,6 +1,6 @@  ;;; image-mode.el --- support for visiting image files  ;; -;; Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc. +;; Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.  ;;  ;; Author: Richard Stallman <rms@gnu.org>  ;; Keywords: multimedia @@ -210,6 +210,8 @@ This variable is used to display the current image type in the mode line.")      map)    "Major mode keymap for viewing images as text in Image mode.") +(defvar bookmark-make-cell-function) +  ;;;###autoload  (defun image-mode ()    "Major mode for image files. @@ -373,6 +375,10 @@ and showing the image as an image."      ;; Finally, return the completed record.      the-record)) +(declare-function bookmark-get-filename        "bookmark" (bookmark)) +(declare-function bookmark-get-bookmark-record "bookmark" (bookmark)) +(declare-function bookmark-get-position        "bookmark" (bookmark)) +  ;;;###autoload  (defun image-bookmark-jump (bmk)    ;; This implements the `handler' function interface for record type | 
