# HG changeset patch # User Gerd Moellmann # Date 985967681 0 # Node ID c9960ca5e880a52697cba588f24689d814deabc9 # Parent bb0f5c949199cc5581b309a2305283e0d5d6b5e5 (gnus-interactive): Fix parenthesis errors. diff -r bb0f5c949199 -r c9960ca5e880 lisp/gnus/gnus.el --- a/lisp/gnus/gnus.el Fri Mar 30 15:11:53 2001 +0000 +++ b/lisp/gnus/gnus.el Fri Mar 30 15:54:41 2001 +0000 @@ -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 ;; Lars Magne Ingebrigtsen @@ -2233,8 +2233,8 @@ 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)))