From: Stefan Monnier Date: Fri, 19 Mar 2004 01:03:22 +0000 (+0000) Subject: (standard-display-8bit): Simplify. X-Git-Tag: ttn-vms-21-2-B4~7212 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6c89b0e404ace3ecf9d36b50fd3fcb27147cfa87;p=emacs.git (standard-display-8bit): Simplify. --- diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 6403b7de8b0..87781f5f8ae 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -1,6 +1,6 @@ ;;; disp-table.el --- functions for dealing with char tables -;; Copyright (C) 1987, 1994, 1995, 1999 Free Software Foundation, Inc. +;; Copyright (C) 1987, 94, 95, 1999, 2004 Free Software Foundation, Inc. ;; Author: Erik Naggum ;; Based on a previous version by Howard Gayle @@ -116,9 +116,7 @@ Valid symbols are `truncation', `wrap', `escape', `control', (or standard-display-table (setq standard-display-table (make-display-table))) (while (<= l h) - (if (and (>= l ?\ ) (< l 127)) - (aset standard-display-table l nil) - (aset standard-display-table l (vector l))) + (aset standard-display-table l (if (or (< l ?\ ) (>= l 127)) (vector l))) (setq l (1+ l)))) ;;;###autoload