X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/26e06f4464c58704889bdc536edc25b73e8c0179..a3dae87a1b5405d2bffde7c2d829a5dbfc7ff274:/lisp/ezimage.el diff --git a/lisp/ezimage.el b/lisp/ezimage.el index 2659bfdc56..b828f79f8f 100644 --- a/lisp/ezimage.el +++ b/lisp/ezimage.el @@ -1,7 +1,6 @@ ;;; ezimage --- Generalized Image management -;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -;; 2008 Free Software Foundation, Inc. +;; Copyright (C) 1999-2011 Free Software Foundation, Inc. ;; Author: Eric M. Ludlam ;; Keywords: file, tags, tools @@ -72,7 +71,7 @@ IMAGESPEC is the image data, and DOCSTRING is documentation for the image." ;; XEmacs. (if (not (fboundp 'make-glyph)) - (defmacro defezimage (variable imagespec docstring) + (defmacro defezimage (variable _imagespec docstring) "Don't bother loading up an image... Argument VARIABLE is the variable to define. Argument IMAGESPEC is the list defining the image to create. @@ -300,8 +299,7 @@ Optional argument STRING is a string upon which to add text properties." See `ezimage-expand-image-button-alist' for details." (interactive) (with-output-to-temp-buffer "*Ezimage Images*" - (save-excursion - (set-buffer "*Ezimage Images*") + (with-current-buffer "*Ezimage Images*" (goto-char (point-max)) (insert "Ezimage image cache.\n\n") (let ((start (point)) (end nil)) @@ -324,8 +322,7 @@ See `ezimage-expand-image-button-alist' for details." See `ezimage-expand-image-button-alist' for details." (interactive) (with-output-to-temp-buffer "*Ezimage Images*" - (save-excursion - (set-buffer "*Ezimage Images*") + (with-current-buffer "*Ezimage Images*" (goto-char (point-max)) (insert "Ezimage image cache.\n\n") (let ((start (point)) (end nil)) @@ -352,5 +349,4 @@ See `ezimage-expand-image-button-alist' for details." (provide 'ezimage) -;; arch-tag: d4ea2d93-3c7a-4cb3-b5a6-c1b9178183aa ;;; sb-image.el ends here