diff options
| author | Dan Nicolaescu <dann@ics.uci.edu> | 2005-09-25 01:49:13 +0000 |
|---|---|---|
| committer | Dan Nicolaescu <dann@ics.uci.edu> | 2005-09-25 01:49:13 +0000 |
| commit | 0d1460c361d98a99311ad863e1dac6f0d21500bb (patch) | |
| tree | 702de67c87c9249659430aa1e0b8a404122dbbb9 /lisp | |
| parent | ce5a3ac01e1d22fe149978bd19bf7861ba116f62 (diff) | |
| download | emacs-0d1460c361d98a99311ad863e1dac6f0d21500bb.tar.gz | |
* term/rxvt.el (rxvt-register-default-colors): Delete redundant
condition.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/term/rxvt.el | 2 |
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)) |
