diff options
author | ShengHuo ZHU <zsh@cs.rochester.edu> | 2002-07-06 13:15:21 +0000 |
---|---|---|
committer | ShengHuo ZHU <zsh@cs.rochester.edu> | 2002-07-06 13:15:21 +0000 |
commit | d942a83dca5c6b444e81475b3a1de485f778d452 (patch) | |
tree | b94a8b49989827a77f8ddda9b309bba7907e1330 /lisp/gnus/gnus-topic.el | |
parent | 008c915c448d39e5fe5848e0b90a323029c4352b (diff) | |
download | emacs-d942a83dca5c6b444e81475b3a1de485f778d452.tar.gz |
* gnus-topic.el (gnus-topic-indent, gnus-topic-unindent): Change
cdaar to cdar and car.
* nnsoup.el (nnsoup-retrieve-headers, nnsoup-request-type)
(nnsoup-read-active-file, nnsoup-article-to-area): Ditto.
Diffstat (limited to 'lisp/gnus/gnus-topic.el')
-rw-r--r-- | lisp/gnus/gnus-topic.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-topic.el b/lisp/gnus/gnus-topic.el index 3761dbc17b9..efc639ba8d9 100644 --- a/lisp/gnus/gnus-topic.el +++ b/lisp/gnus/gnus-topic.el @@ -1416,7 +1416,7 @@ If UNINDENT, remove an indentation." (gnus-topic-kill-group) (push (cdar gnus-topic-killed-topics) gnus-topic-alist) (gnus-topic-create-topic - topic parent nil (cdaar gnus-topic-killed-topics)) + topic parent nil (cdar (car gnus-topic-killed-topics))) (pop gnus-topic-killed-topics) (or (gnus-topic-goto-topic topic) (gnus-topic-goto-topic parent)))))) @@ -1435,7 +1435,7 @@ If UNINDENT, remove an indentation." (push (cdar gnus-topic-killed-topics) gnus-topic-alist) (gnus-topic-create-topic topic grandparent (gnus-topic-next-topic parent) - (cdaar gnus-topic-killed-topics)) + (cdar (car gnus-topic-killed-topics))) (pop gnus-topic-killed-topics) (gnus-topic-goto-topic topic)))) |