summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/term/rxvt.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 60d1609481f..9c9bc0d1eb1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-24 Andreas Schwab <schwab@suse.de>
+
+ * term/rxvt.el (rxvt-register-default-colors): Delete redundant
+ condition.
+
2005-09-25 Romain Francoise <romain@orebokech.com>
* dired-aux.el (dired-copy-file-recursive):
diff --git a/lisp/term/rxvt.el b/lisp/term/rxvt.el
index 8337d8ddb4a..7cd02570d84 100644
--- a/lisp/term/rxvt.el
+++ b/lisp/term/rxvt.el
@@ -240,7 +240,7 @@ for the currently selected frame."
(list color color color))
(setq ncolors (1- ncolors))))
- ((and (> ncolors 0) (= ncolors 72)) ; rxvt-unicode
+ ((= ncolors 72) ; rxvt-unicode
;; 64 non-gray colors
(let ((levels '(0 139 205 255))
(r 0) (g 0) (b 0))