(gnus-interactive): Fix parenthesis errors.
This commit is contained in:
parent
cabf45daae
commit
fa066d09be
1 changed files with 3 additions and 3 deletions
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue