1 ;;; gnus-undo.el --- minor mode for undoing in Gnus
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; This package allows arbitrary undoing in Gnus buffers. As all the
29 ;; Gnus buffers aren't very text-oriented (what is in the buffers is
30 ;; just some arbitrary representation of the actual data), normal Emacs
31 ;; undoing doesn't work at all for Gnus.
33 ;; This package works by letting Gnus register functions for reversing
34 ;; actions, and then calling these functions when the user pushes the
35 ;; `undo' key. As with normal `undo', there it is possible to set
36 ;; undo boundaries and so on.
38 ;; Internally, the undo sequence is represented by the
39 ;; `gnus-undo-actions' list, where each element is a list of functions
40 ;; to be called, in sequence, to undo some action. (An "action" is a
41 ;; collection of functions.)
43 ;; For instance, a function for killing a group will call
44 ;; `gnus-undo-register' with a function that un-kills the group. This
45 ;; package will put that function into an action.
49 (eval-when-compile (require 'cl
))
54 (defgroup gnus-undo nil
55 "Undoing in Gnus buffers."
58 (defcustom gnus-undo-limit
2000
59 "The number of undoable actions recorded."
63 (defcustom gnus-undo-mode nil
64 "Minor mode for undoing in Gnus buffers."
68 (defcustom gnus-undo-mode-hook nil
69 "Hook called in all `gnus-undo-mode' buffers."
73 ;;; Internal variables.
75 (defvar gnus-undo-actions nil
)
76 (defvar gnus-undo-boundary t
)
77 (defvar gnus-undo-last nil
)
78 (defvar gnus-undo-boundary-inhibit nil
)
80 ;;; Minor mode definition.
82 (defvar gnus-undo-mode-map nil
)
84 (unless gnus-undo-mode-map
85 (setq gnus-undo-mode-map
(make-sparse-keymap))
87 (gnus-define-keys gnus-undo-mode-map
91 ;; many people are used to type `C-/' on X terminals and get `C-_'.
92 [(control /)] gnus-undo
))
94 (defun gnus-undo-make-menu-bar ()
95 ;; This is disabled for the time being.
97 (define-key-after (current-local-map) [menu-bar file gnus-undo
]
98 (cons "Undo" 'gnus-undo-actions
)
99 [menu-bar file whatever
])))
101 (defun gnus-undo-mode (&optional arg
)
102 "Minor mode for providing `undo' in Gnus buffers.
104 \\{gnus-undo-mode-map}"
106 (set (make-local-variable 'gnus-undo-mode
)
107 (if (null arg
) (not gnus-undo-mode
)
108 (> (prefix-numeric-value arg
) 0)))
109 (set (make-local-variable 'gnus-undo-actions
) nil
)
110 (set (make-local-variable 'gnus-undo-boundary
) t
)
113 (when (gnus-visual-p 'undo-menu
'menu
)
114 (gnus-undo-make-menu-bar))
115 (add-minor-mode 'gnus-undo-mode
"" gnus-undo-mode-map
)
116 (gnus-make-local-hook 'post-command-hook
)
117 (add-hook 'post-command-hook
'gnus-undo-boundary nil t
)
118 (gnus-run-hooks 'gnus-undo-mode-hook
)))
120 ;;; Interface functions.
122 (defun gnus-disable-undo (&optional buffer
)
123 "Disable undoing in the current buffer."
128 (gnus-undo-mode -
1)))
130 (defun gnus-undo-boundary ()
131 "Set Gnus undo boundary."
132 (if gnus-undo-boundary-inhibit
133 (setq gnus-undo-boundary-inhibit nil
)
134 (setq gnus-undo-boundary t
)))
136 (defun gnus-undo-force-boundary ()
137 "Set Gnus undo boundary."
138 (setq gnus-undo-boundary-inhibit nil
139 gnus-undo-boundary t
))
141 (defun gnus-undo-register (form)
142 "Register FORMS as something to be performed to undo a change.
143 FORMS may use backtick quote syntax."
145 (gnus-undo-register-1
149 (put 'gnus-undo-register
'lisp-indent-function
0)
150 (put 'gnus-undo-register
'edebug-form-spec
'(body))
152 (defun gnus-undo-register-1 (function)
153 "Register FUNCTION as something to be performed to undo a change."
156 ;; We are on a boundary, so we create a new action.
158 (push (list function
) gnus-undo-actions
)
159 (setq gnus-undo-boundary nil
))
160 ;; Prepend the function to an old action.
162 (setcar gnus-undo-actions
(cons function
(car gnus-undo-actions
))))
165 (setq gnus-undo-actions
(list (list function
)))))
166 ;; Limit the length of the undo list.
167 (let ((next (nthcdr gnus-undo-limit gnus-undo-actions
)))
170 ;; We are not at a boundary...
171 (setq gnus-undo-boundary-inhibit t
)))
174 "Undo some previous changes in Gnus buffers.
175 Repeat this command to undo more changes.
176 A numeric argument serves as a repeat count."
178 (unless gnus-undo-mode
179 (error "Undoing is not enabled in this buffer"))
180 (message "%s" last-command
)
181 (when (or (not (eq last-command
'gnus-undo
))
182 (not gnus-undo-last
))
183 (setq gnus-undo-last gnus-undo-actions
))
184 (let ((action (pop gnus-undo-last
)))
186 (error "Nothing further to undo"))
187 (setq gnus-undo-actions
(delq action gnus-undo-actions
))
188 (setq gnus-undo-boundary t
)
189 (mapc 'funcall action
)))
193 ;;; arch-tag: 0d787bc7-787d-499a-837f-211d2cb07f2e
194 ;;; gnus-undo.el ends here