Fix warning during dumping on MS-DOS
* lisp/cus-start.el (standard): Filter out `process-error-pause-time' on MS-DOS.
This commit is contained in:
parent
c0fa3f2a6b
commit
33a9ee2084
1 changed files with 2 additions and 0 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue