Adjusted for the change of map-char-table.

This commit is contained in:
Kenichi Handa 2002-03-01 02:05:45 +00:00
parent 6466bb34d9
commit 2494c91bdb

View file

@ -280,8 +280,11 @@ This is used by `eshell-watch-for-password-prompt'."
(map-char-table
(function
(lambda (key val)
(and (>= key 256)
(/= (char-syntax key) ?w)
(and (if (consp key)
(and (>= (car key) 128)
(/= (char-syntax (car key)) ?w))
(and (>= key 256)
(/= (char-syntax key) ?w)))
(modify-syntax-entry key "_ "
eshell-mode-syntax-table))))
(standard-syntax-table)))))