diff options
author | Po Lu <luangruo@yahoo.com> | 2022-02-17 19:10:24 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-02-17 19:10:24 +0800 |
commit | 33a9ee2084f860610dbdc67bd3db237dcb64202e (patch) | |
tree | 9bb9320338e645a2365a2155a8098f87f581e7ef /lisp/cus-start.el | |
parent | c0fa3f2a6b8ce06af59f5e70cf1757189bd401f0 (diff) | |
download | emacs-33a9ee2084f860610dbdc67bd3db237dcb64202e.tar.gz emacs-33a9ee2084f860610dbdc67bd3db237dcb64202e.tar.bz2 emacs-33a9ee2084f860610dbdc67bd3db237dcb64202e.zip |
Fix warning during dumping on MS-DOS
* lisp/cus-start.el (standard): Filter out
`process-error-pause-time' on MS-DOS.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index f8bab89e902..83ab61b28b5 100644 --- 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))) |