emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master caec5c0: ; Fix last change in cpp.el


From: Eli Zaretskii
Subject: [Emacs-diffs] master caec5c0: ; Fix last change in cpp.el
Date: Sat, 26 Nov 2016 07:32:01 +0000 (UTC)

branch: master
commit caec5c06caa854a5e9d2001bd8ef7199a0b7540c
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    ; Fix last change in cpp.el
    
    * lisp/progmodes/cpp.el (cpp-message-min-time-interval): Fix the
    ':type' attribute.
---
 lisp/progmodes/cpp.el |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/progmodes/cpp.el b/lisp/progmodes/cpp.el
index 18b0704..4e029ea 100644
--- a/lisp/progmodes/cpp.el
+++ b/lisp/progmodes/cpp.el
@@ -107,7 +107,8 @@ Each entry is a list with the following elements:
 (defcustom cpp-message-min-time-interval 1.0
   "Minimum time interval in seconds for `cpp-progress-message' messages.
 If nil, `cpp-progress-message' prints no progress messages."
-  :type 'float
+  :type '(choice (const :tag "Disable progress messages" nil)
+                 float)
   :group 'cpp
   :version "26.1")
 



reply via email to

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