Adjusted for the change of map-char-table.
This commit is contained in:
parent
6466bb34d9
commit
2494c91bdb
1 changed files with 5 additions and 2 deletions
|
@ -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)))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue