]> git.eshelyaron.com Git - emacs.git/commitdiff
(group thumbs): Add :version keyword.
authorJohn Paul Wallington <jpw@pobox.com>
Mon, 1 Nov 2004 08:01:14 +0000 (08:01 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Mon, 1 Nov 2004 08:01:14 +0000 (08:01 +0000)
lisp/ChangeLog
lisp/thumbs.el

index e5dd9b7f3fa56be127f100781ed848724aad31ca..020d20a23b67e74e1db8dd4d095f76b884aef596 100644 (file)
@@ -1,3 +1,10 @@
+2004-11-01  John Paul Wallington  <jpw@gnu.org>
+
+       * files.el (large-file-warning-threshold): Add :version keyword.
+       (kill-some-buffers): Doc fix.
+
+       * thumbs.el (group thumbs): Add :version keyword.
+
 2004-11-01  Richard M. Stallman  <rms@gnu.org>
 
        * allout.el (allout group): Add :version.
index 13970e59ee8a869b032dfd76ea6a394f1f0d7bfe..b6a68df33c4e7799c42bc9d090425d82331afc94 100644 (file)
@@ -30,8 +30,8 @@
 ;;; Commentary:
 
 ;; This package create two new mode: thumbs-mode and
-;; thumbs-view-image-mode. It is used for images browsing and viewing
-;; from within emacs. Minimal image manipulation functions are also
+;; thumbs-view-image-mode.  It is used for images browsing and viewing
+;; from within Emacs.  Minimal image manipulation functions are also
 ;; available via external programs.
 ;;
 ;; The 'convert' program from 'ImageMagick'
@@ -62,6 +62,7 @@
 
 (defgroup thumbs nil
   "Thumbnails previewer."
+  :version "21.4"
   :group 'multimedia)
 
 (defcustom thumbs-thumbsdir
@@ -416,7 +417,7 @@ and SAME-WINDOW to show thumbs in the same window."
 (defalias 'thumbs 'thumbs-show-all-from-dir)
 
 (defun thumbs-find-image (img &optional num otherwin)
-  (funcall 
+  (funcall
    (if otherwin 'switch-to-buffer-other-window 'switch-to-buffer)
    (concat "*Image: " (file-name-nondirectory img) " - "
           (number-to-string (or num 0)) "*"))