diff options
author | Mathias Dahl <mathias.dahl@gmail.com> | 2006-05-27 14:20:03 +0000 |
---|---|---|
committer | Mathias Dahl <mathias.dahl@gmail.com> | 2006-05-27 14:20:03 +0000 |
commit | 9c2d888b35db9a941e83e859a548b928ccead5f0 (patch) | |
tree | 28507466744f3299d25779fe7cba32d20d3d1aec /lisp/tumme.el | |
parent | 18ed6a46bc1a37c5bb58cf0546c0932efbd771c1 (diff) | |
download | emacs-9c2d888b35db9a941e83e859a548b928ccead5f0.tar.gz |
Change a lot of `(if .. (progn ..)' to `(when ..)'.
(tumme-remove-tag): Fix bug.
Diffstat (limited to 'lisp/tumme.el')
-rw-r--r-- | lisp/tumme.el | 8 |
1 files changed, 4 insertions, 4 deletions
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." ;; If on empty line at end of buffer (when (and (eobp) (looking-at "^$")) - (delete-backward-char 1))))))) - files) - (save-buffer) - (kill-buffer buf))) + (delete-backward-char 1)))))) + files) + (save-buffer) + (kill-buffer buf)))) (defun tumme-list-tags (file) "Read all tags for image FILE from the image database." |