emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 33a9ee2084: Fix warning during dumping on MS-DOS


From: Po Lu
Subject: master 33a9ee2084: Fix warning during dumping on MS-DOS
Date: Thu, 17 Feb 2022 06:11:49 -0500 (EST)

branch: master
commit 33a9ee2084f860610dbdc67bd3db237dcb64202e
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    Fix warning during dumping on MS-DOS
    
    * lisp/cus-start.el (standard): Filter out
    `process-error-pause-time' on MS-DOS.
---
 lisp/cus-start.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index f8bab89e90..83ab61b28b 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]