+2006-02-16 Juanma Barranquero <lekktu@gmail.com>
+
+ * html2text.el (html2text-remove-tag-list):
+ * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
+
+2006-02-14 Chong Yidong <cyd@stupidchicken.com>
+
+ * gnus-cus.el: Revert 2005-10-17 change.
+
2006-02-16 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-art.el (article-strip-banner): Use
;;; Widgets:
-(defvar gnus-custom-map
- (let ((map (make-keymap)))
- (set-keymap-parent map widget-keymap)
- (suppress-keymap map)
- (define-key map [mouse-1] 'widget-move-and-invoke)
- map)
- "Keymap for editing Gnus customization buffers.")
-
(defun gnus-custom-mode ()
"Major mode for editing Gnus customization buffers.
(kill-all-local-variables)
(setq major-mode 'gnus-custom-mode
mode-name "Gnus Customize")
- (use-local-map gnus-custom-map)
+ (use-local-map widget-keymap)
;; Emacs 21 stuff:
(when (and (facep 'custom-button-face)
(facep 'custom-button-pressed-face))
(widget-create 'sexp
:tag "Method"
:value (gnus-info-method info))))
- (use-local-map gnus-custom-map)
+ (use-local-map widget-keymap)
(widget-setup)
(buffer-enable-undo)
(goto-char (point-min))))
'(repeat :inline t
:tag "Unknown entries"
sexp)))
- (use-local-map gnus-custom-map)
+ (use-local-map widget-keymap)
(widget-setup)))
(defun gnus-score-customize-done (&rest ignore)
(gnus-agent-cat-prepare-category-field agent-enable-undownloaded-faces)
- (use-local-map gnus-custom-map)
+ (use-local-map widget-keymap)
(widget-setup)
(buffer-enable-undo))))
This is a list of tags which should be removed, without any
formatting. Note that tags in the list are presented *without*
-any \"<\" or \">\". All occurences of a tag appearing in this
+any \"<\" or \">\". All occurrences of a tag appearing in this
list are removed, irrespective of whether it is a closing or
opening tag, or if the tag has additional attributes. The
deletion is done by the function `html2text-remove-tags'.