projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0fa3f2
)
Fix warning during dumping on MS-DOS
author
Po Lu
<luangruo@yahoo.com>
Thu, 17 Feb 2022 11:10:24 +0000
(19:10 +0800)
committer
Po Lu
<luangruo@yahoo.com>
Thu, 17 Feb 2022 11:10:24 +0000
(19:10 +0800)
* lisp/cus-start.el (standard): Filter out
`process-error-pause-time' on MS-DOS.
lisp/cus-start.el
patch
|
blob
|
history
diff --git
a/lisp/cus-start.el
b/lisp/cus-start.el
index f8bab89e9024714559653cc5ba109d8c9a53364e..83ab61b28b5e1b63c8cdc727fe88d47b07676197 100644
(file)
--- a/
lisp/cus-start.el
+++ b/
lisp/cus-start.el
@@
-858,6
+858,8
@@
since it could result in memory overflow and make Emacs crash."
(featurep 'ns))
((string-match "\\`haiku-" (symbol-name symbol))
(featurep 'haiku))
+ ((eq symbol 'process-error-pause-time)
+ (not (eq system-type 'ms-dos)))
((eq symbol 'x-gtk-use-native-input)
(and (featurep 'x)
(featurep 'gtk)))