# HG changeset patch # User Stefan Monnier # Date 1079658202 0 # Node ID b925e32745472af93947c77d735e326f364089e0 # Parent 3e8ea09f937548882d4cc28db08f92a5005bb1a2 (standard-display-8bit): Simplify. diff -r 3e8ea09f9375 -r b925e3274547 lisp/disp-table.el --- a/lisp/disp-table.el Fri Mar 19 00:50:48 2004 +0000 +++ b/lisp/disp-table.el Fri Mar 19 01:03:22 2004 +0000 @@ -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 @@ (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