aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Dahl2006-05-27 14:20:03 +0000
committerMathias Dahl2006-05-27 14:20:03 +0000
commit9c2d888b35db9a941e83e859a548b928ccead5f0 (patch)
tree28507466744f3299d25779fe7cba32d20d3d1aec
parent18ed6a46bc1a37c5bb58cf0546c0932efbd771c1 (diff)
downloademacs-9c2d888b35db9a941e83e859a548b928ccead5f0.tar.gz
emacs-9c2d888b35db9a941e83e859a548b928ccead5f0.zip
Change a lot of `(if .. (progn ..)' to `(when ..)'.
(tumme-remove-tag): Fix bug.
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/tumme.el8
2 files changed, 5 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 863881b3a40..cd99ecc3cdc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,7 @@
12006-05-27 Mathias Dahl <mathias.dahl@gmail.com> 12006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
2 2
3 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'. 3 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
4 (tumme-remove-tag): Fix bug.
4 5
52006-05-27 Thien-Thi Nguyen <ttn@gnu.org> 62006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
6 7
diff --git a/lisp/tumme.el b/lisp/tumme.el
index 8358986cca7..b770c292d35 100644
--- a/lisp/tumme.el
+++ b/lisp/tumme.el
@@ -919,10 +919,10 @@ displayed."
919 ;; If on empty line at end of buffer 919 ;; If on empty line at end of buffer
920 (when (and (eobp) 920 (when (and (eobp)
921 (looking-at "^$")) 921 (looking-at "^$"))
922 (delete-backward-char 1))))))) 922 (delete-backward-char 1))))))
923 files) 923 files)
924 (save-buffer) 924 (save-buffer)
925 (kill-buffer buf))) 925 (kill-buffer buf))))
926 926
927(defun tumme-list-tags (file) 927(defun tumme-list-tags (file)
928 "Read all tags for image FILE from the image database." 928 "Read all tags for image FILE from the image database."