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

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

[elpa] externals/flylisp 1ad4b89: * flylisp.el (flylisp-mode): Fix warni


From: Stefan Monnier
Subject: [elpa] externals/flylisp 1ad4b89: * flylisp.el (flylisp-mode): Fix warning
Date: Thu, 15 Apr 2021 14:01:08 -0400 (EDT)

branch: externals/flylisp
commit 1ad4b89c4ec5b55502f2381b5122fe7bb25d96a5
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * flylisp.el (flylisp-mode): Fix warning
    
    Avoid pre-Emacs-21 calling convention of `define-minor-mode`.
---
 flylisp.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flylisp.el b/flylisp.el
index 647a543..5b41a01 100644
--- a/flylisp.el
+++ b/flylisp.el
@@ -1,6 +1,6 @@
 ;;; flylisp.el --- Color unbalanced parentheses and parentheses inconsistent 
with indentation -*- lexical-binding: t; -*-
 
-;; Copyright (C) 2013-2014  Free Software Foundation, Inc.
+;; Copyright (C) 2013-2021  Free Software Foundation, Inc.
 
 ;; Author: Barry O'Reilly <gundaetiapo@gmail.com>
 ;; Version: 0.2
@@ -486,7 +486,7 @@ next in the list. This is used to scan-lists efficiently."
 (define-minor-mode flylisp-mode
   "Color unbalanced parentheses and parentheses inconsistent with
   indentation."
-  nil nil nil
+  :lighter nil
   (if flylisp-mode
       (progn
         (jit-lock-register 'fl-propertize-region t)



reply via email to

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