summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorShengHuo ZHU <zsh@cs.rochester.edu>2000-12-24 06:36:33 +0000
committerShengHuo ZHU <zsh@cs.rochester.edu>2000-12-24 06:36:33 +0000
commit841696203a00f25e508a06f5f7ac144afbb4194a (patch)
tree7685d4c41de6acc23d078de663c681cd65271bd0 /lisp
parentf717c2baaa18bc06df847b3edd8bc641585fffa4 (diff)
downloademacs-841696203a00f25e508a06f5f7ac144afbb4194a.tar.gz
* message.el (message-setup): Use cons. Suggested by Johan Vromans
<jvromans@squirrel.nl>. * gnus-topic.el (gnus-topic-create-topic): Use list. * gnus-vm.el (gnus-summary-save-article-vm): Require gnus-art before binding gnus-default-article-saver. * gnus-sum.el (gnus-summary-save-article): (gnus-summary-pipe-output): (gnus-summary-save-article-mail): (gnus-summary-save-article-rmail): (gnus-summary-save-article-file): (gnus-summary-write-article-file): (gnus-summary-save-article-body-file): Ditto. * gnus-mh.el (gnus-summary-save-article-folder): Ditto.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog20
-rw-r--r--lisp/gnus/gnus-mh.el1
-rw-r--r--lisp/gnus/gnus-sum.el6
-rw-r--r--lisp/gnus/gnus-topic.el2
-rw-r--r--lisp/gnus/gnus-vm.el1
-rw-r--r--lisp/gnus/message.el2
6 files changed, 30 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index f6f9229794b..a88151febda 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,23 @@
+2000-12-24 01:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
+
+ * message.el (message-setup): Use cons. Suggested by Johan Vromans
+ <jvromans@squirrel.nl>.
+
+ * gnus-topic.el (gnus-topic-create-topic): Use list.
+
+ * gnus-vm.el (gnus-summary-save-article-vm): Require gnus-art
+ before binding gnus-default-article-saver.
+
+ * gnus-sum.el (gnus-summary-save-article):
+ (gnus-summary-pipe-output):
+ (gnus-summary-save-article-mail):
+ (gnus-summary-save-article-rmail):
+ (gnus-summary-save-article-file):
+ (gnus-summary-write-article-file):
+ (gnus-summary-save-article-body-file): Ditto.
+
+ * gnus-mh.el (gnus-summary-save-article-folder): Ditto.
+
2000-12-22 ShengHuo ZHU <zsh@cs.rochester.edu>
* gnus-art.el (gnus-article-check-hidden-text): Return t.
diff --git a/lisp/gnus/gnus-mh.el b/lisp/gnus/gnus-mh.el
index a73e90b6ab3..dd54c8134df 100644
--- a/lisp/gnus/gnus-mh.el
+++ b/lisp/gnus/gnus-mh.el
@@ -47,6 +47,7 @@ If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-save-in-folder))
(gnus-summary-save-article arg)))
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 33023546ccd..697224c1607 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -9138,6 +9138,7 @@ If N is a negative number, pipe the N previous articles.
If N is nil and any articles have been marked with the process mark,
pipe those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-save-in-pipe))
(gnus-summary-save-article arg t))
(gnus-configure-windows 'pipe))
@@ -9149,6 +9150,7 @@ If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-save-in-mail))
(gnus-summary-save-article arg)))
@@ -9159,6 +9161,7 @@ If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-save-in-rmail))
(gnus-summary-save-article arg)))
@@ -9169,6 +9172,7 @@ If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-save-in-file))
(gnus-summary-save-article arg)))
@@ -9179,6 +9183,7 @@ If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-write-to-file))
(gnus-summary-save-article arg)))
@@ -9189,6 +9194,7 @@ If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-save-body-in-file))
(gnus-summary-save-article arg)))
diff --git a/lisp/gnus/gnus-topic.el b/lisp/gnus/gnus-topic.el
index 4b22a4d7840..3761dbc17b9 100644
--- a/lisp/gnus/gnus-topic.el
+++ b/lisp/gnus/gnus-topic.el
@@ -1130,7 +1130,7 @@ When used interactively, PARENT will be the topic under point."
(unless parent
(setq parent (caar gnus-topic-topology)))
(let ((top (cdr (gnus-topic-find-topology parent)))
- (full-topic (or full-topic `((,topic visible)))))
+ (full-topic (or full-topic (list (list topic 'visible nil nil)))))
(unless top
(error "No such parent topic: %s" parent))
(if previous
diff --git a/lisp/gnus/gnus-vm.el b/lisp/gnus/gnus-vm.el
index d9abe3e5867..53b741f711c 100644
--- a/lisp/gnus/gnus-vm.el
+++ b/lisp/gnus/gnus-vm.el
@@ -84,6 +84,7 @@ If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P")
+ (require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-save-in-vm))
(gnus-summary-save-article arg)))
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 3044bdc196b..ae3b3a5d71a 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -3595,7 +3595,7 @@ than 988 characters long, and if they are not, trim them until they are."
(if (not (and message-this-is-mail mua))
(message-setup-1 headers replybuffer actions)
(if replybuffer
- (setq yank-action (list 'insert-buffer replybuffer)))
+ (setq yank-action (cons 'insert-buffer replybuffer)))
(setq headers (copy-sequence headers))
(setq field (assq 'Subject headers))
(when field