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

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

[elpa] externals/shen-mode a8d9aa1 14/15: * packages/shen-mode/shen-mode


From: Stefan Monnier
Subject: [elpa] externals/shen-mode a8d9aa1 14/15: * packages/shen-mode/shen-mode.el: Don't require `cl`
Date: Sun, 29 Nov 2020 00:14:29 -0500 (EST)

branch: externals/shen-mode
commit a8d9aa1acad9ad744cb68926c3685d6e3fca675d
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * packages/shen-mode/shen-mode.el: Don't require `cl`
---
 shen-mode.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/shen-mode.el b/shen-mode.el
index 81c2829..7817de9 100644
--- a/shen-mode.el
+++ b/shen-mode.el
@@ -1,6 +1,6 @@
 ;;; shen-mode.el --- A major mode for editing shen source code
 
-;; Copyright (C) 2011, 2013 Free Software Foundation, Inc.
+;; Copyright (C) 2011-2020 Free Software Foundation, Inc.
 
 ;; Author: Eric Schulte <schulte.eric@gmail.com>
 ;; Version: 0.1
@@ -30,7 +30,7 @@
 ;; following for more information on Shen.  http://www.shenlanguage.org
 
 ;;; Code:
-(eval-when-compile (require 'cl))
+
 (require 'lisp-mode)
 (require 'imenu)
 
@@ -253,7 +253,8 @@
           (append
            '("let" "=" "eval-without-reader-macros" "freeze" "type") ; generic
            '("if" "and" "or" "cond")) t) ; boolean
-         "\\>") . 1)
+         "\\>")
+       . 1)
       ;; errors
       ("(\\(error\\)\\>" 1 font-lock-warning-face)
       ;; built-in
@@ -293,7 +294,8 @@
            (lambda (cnst) (format "*%s*" cnst))
            '("language" "implementation" "port" "porters"
              "stinput" "home-directory" "version"
-             "maximum-print-sequence-size" "printer" "macros")) t)
+             "maximum-print-sequence-size" "printer" "macros"))
+          t)
          "\\>")
        1 font-lock-builtin-face)))
   "Default expressions to highlight in Shen mode.")



reply via email to

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