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

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

[elpa] externals/num3-mode bb37a10 6/9: * packages/num3-mode/num3-mode.e


From: Stefan Monnier
Subject: [elpa] externals/num3-mode bb37a10 6/9: * packages/num3-mode/num3-mode.el: Fix compilation warnings.
Date: Sat, 28 Nov 2020 18:59:26 -0500 (EST)

branch: externals/num3-mode
commit bb37a104a03ccf7660c5fc416bb3a3dd3bfb31e2
Author: Michal Nazarewicz <mina86@mina86.com>
Commit: Michal Nazarewicz <mina86@mina86.com>

    * packages/num3-mode/num3-mode.el: Fix compilation warnings.
    
    Fixes the following warnings:
    
    In toplevel form:
    num3-mode.el:47:1:Warning: defcustom for ‘num3-group-size’ fails to specify
        type
    num3-mode.el:47:1:Warning: defcustom for ‘num3-group-size’ fails to specify
        type
    num3-mode.el:50:1:Warning: defcustom for ‘num3-threshold’ fails to specify
        type
    num3-mode.el:50:1:Warning: defcustom for ‘num3-threshold’ fails to specify
        type
    
    In num3-mode:
    num3-mode.el:95:11:Warning: ‘font-lock-fontify-buffer’ is for interactive 
use
        only; use ‘font-lock-ensure’ or ‘font-lock-flush’ instead.
---
 num3-mode.el | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/num3-mode.el b/num3-mode.el
index 5026cbe..d4f12e0 100644
--- a/num3-mode.el
+++ b/num3-mode.el
@@ -45,10 +45,12 @@ font-lock is on."
   :group 'text)
 
 (defcustom num3-group-size 3
-  "Number of digits to group in decimal numbers.")
+  "Number of digits to group in decimal numbers."
+  :type 'integer)
 
 (defcustom num3-threshold 5
-  "Number must be at least that long to start highlighting.")
+  "Number must be at least that long to start highlighting."
+  :type 'integer)
 
 (defface num3-face-odd
   '((t))
@@ -92,7 +94,7 @@ where) decimal point (would be) is."
         (font-lock-add-keywords nil '(num3--matcher) 'append))
     (font-lock-remove-keywords nil '(num3--matcher)))
   (if (fboundp 'font-lock-flush) (font-lock-flush)
-    (when font-lock-mode (font-lock-fontify-buffer))))
+    (when font-lock-mode (with-no-warnings (font-lock-fontify-buffer)))))
 
 ;;;###autoload
 (define-globalized-minor-mode global-num3-mode num3-mode num3-mode)



reply via email to

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