(gnus-interactive): Fix parenthesis errors.

This commit is contained in:
Gerd Moellmann 2001-03-30 15:54:41 +00:00
parent cabf45daae
commit fa066d09be

View file

@ -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)))