# HG changeset patch # User Richard M. Stallman # Date 1057611384 0 # Node ID e5ae6af23b7bce37b1eb51c9c25cba70d0119925 # Parent 2a6ed9e210b218eb823ad34d6b8735c35e27c77c (set-display-table-and-terminal-coding-system): Use explicit loop instead of calling standard-display-default. diff -r 2a6ed9e210b2 -r e5ae6af23b7b lisp/international/mule-cmds.el --- a/lisp/international/mule-cmds.el Mon Jul 07 20:55:38 2003 +0000 +++ b/lisp/international/mule-cmds.el Mon Jul 07 20:56:24 2003 +0000 @@ -1689,7 +1689,8 @@ ;; case the user has used standard-display-european earlier in ;; this session. (The MS-DOS port doesn't use that setup, so it ;; doesn't need to undo it.) - (standard-display-default (if (eq window-system 'pc) 128 160) 255) + (dotimes (i 128) + (aset standard-display-table (+ i 128) nil)) (aset standard-display-table 146 nil)) (or (eq window-system 'pc) (set-terminal-coding-system coding))))