summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-03-30 15:54:41 +0000
committerGerd Moellmann <gerd@gnu.org>2001-03-30 15:54:41 +0000
commitfa066d09be4aebf4cb13db3b87c3c46fe21387b0 (patch)
treed365e88df13e65ab60a249f52579d977462d3854
parentcabf45daae770df62714263eef92a90934f25dd9 (diff)
downloademacs-fa066d09be4aebf4cb13db3b87c3c46fe21387b0.tar.gz
(gnus-interactive): Fix parenthesis errors.
-rw-r--r--lisp/gnus/gnus.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el
index de13214865e..6ba926b17d2 100644
--- a/lisp/gnus/gnus.el
+++ b/lisp/gnus/gnus.el
@@ -1,6 +1,6 @@
:;;; gnus.el --- a newsreader for GNU Emacs
;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996,
-;; 1997, 1998, 2000 Free Software Foundation, Inc.
+;; 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
;; Lars Magne Ingebrigtsen <larsi@gnus.org>
@@ -2233,8 +2233,8 @@ g -- Group name."
out)
(cond
((= c ?r)
- (push (if (< (point) (mark) (point) (mark))) out)
- (push (if (> (point) (mark) (point) (mark))) out))))
+ (push (if (< (point) (mark)) (point) (mark)) out)
+ (push (if (> (point) (mark)) (point) (mark)) out))))
(setq out (delq 'gnus-prefix-nil out))
(nreverse out)))