emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] master 6c92cc2 19/25: Rename variable.


From: Jackson Ray Hamilton
Subject: [elpa] master 6c92cc2 19/25: Rename variable.
Date: Mon, 30 May 2016 22:10:45 +0000 (UTC)

branch: master
commit 6c92cc2cdc4f0adac61858d20fabcda58bf7d01b
Author: Jackson Ray Hamilton <address@hidden>
Commit: Jackson Ray Hamilton <address@hidden>

    Rename variable.
---
 context-coloring-emacs-lisp.el |    2 +-
 context-coloring.el            |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/context-coloring-emacs-lisp.el b/context-coloring-emacs-lisp.el
index e2556e5..7160266 100644
--- a/context-coloring-emacs-lisp.el
+++ b/context-coloring-emacs-lisp.el
@@ -120,7 +120,7 @@ second.")
         (1+ context-coloring-elisp-sexp-count))
   (when (and (zerop (% context-coloring-elisp-sexp-count
                        context-coloring-elisp-sexps-per-pause))
-             context-coloring-parse-interruptable-p
+             context-coloring-interruptable-p
              (input-pending-p))
     (throw 'interrupted t)))
 
diff --git a/context-coloring.el b/context-coloring.el
index 405a7b8..a20bfa6 100644
--- a/context-coloring.el
+++ b/context-coloring.el
@@ -388,8 +388,8 @@ permissible.")
       (setq ignore-p (funcall (pop predicates))))
     ignore-p))
 
-(defvar context-coloring-parse-interruptable-p t
-  "Set this to nil to force parse to continue until finished.")
+(defvar context-coloring-interruptable-p t
+  "When non-nil, coloring may be interrupted by user input.")
 
 ;;;###autoload
 (define-minor-mode context-coloring-mode
@@ -433,7 +433,7 @@ Feature inspired by Douglas Crockford."
           (when setup
             (funcall setup))
           ;; Colorize once initially.
-          (let ((context-coloring-parse-interruptable-p nil))
+          (let ((context-coloring-interruptable-p nil))
             (context-coloring-colorize))))
        ((not (context-coloring-ignore-unavailable-message-p))
         (message "Context coloring is unavailable here")))))



reply via email to

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