]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix warning during dumping on MS-DOS
authorPo Lu <luangruo@yahoo.com>
Thu, 17 Feb 2022 11:10:24 +0000 (19:10 +0800)
committerPo 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

index f8bab89e9024714559653cc5ba109d8c9a53364e..83ab61b28b5e1b63c8cdc727fe88d47b07676197 100644 (file)
@@ -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)))