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

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

[nongnu] elpa/jade-mode 111460b056 126/128: Merge pull request #71 from


From: ELPA Syncer
Subject: [nongnu] elpa/jade-mode 111460b056 126/128: Merge pull request #71 from phikal/master
Date: Sat, 29 Jan 2022 08:24:53 -0500 (EST)

branch: elpa/jade-mode
commit 111460b056838854e470a6383041a99f843b93ee
Merge: cfd25bce3e dad17dc86c
Author: Brian C <brian.m.carlson@gmail.com>
Commit: GitHub <noreply@github.com>

    Merge pull request #71 from phikal/master
    
    Fix package headers
---
 jade-mode.el   | 23 ++++++++++++++++++-----
 stylus-mode.el | 25 ++++++++++++++++++-------
 sws-mode.el    | 20 +++++++++++++++-----
 3 files changed, 51 insertions(+), 17 deletions(-)

diff --git a/jade-mode.el b/jade-mode.el
index 440d4541ae..011cfab658 100644
--- a/jade-mode.el
+++ b/jade-mode.el
@@ -1,8 +1,19 @@
-;;; jade-mode.el --- Major mode for editing .jade files
-;;;
-;;; URL: https://github.com/brianc/jade-mode
-;;; Author: Brian M. Carlson and other contributors
-;;; inspired by http://xahlee.org/emacs/elisp_syntax_coloring.html
+;;; jade-mode.el --- Major mode for editing .jade files  -*- lexical-binding: 
t -*-
+
+;; Copyright 2010-2021  Brian Carlson
+
+;; Author: Brian M. Carlson and other contributors
+;; Version: 1.0.1
+;; Keywords: languages
+;; URL: https://github.com/brianc/jade-mode
+
+;;; Commentary:
+
+;; Major mode for the Jade templating language
+;; (https://jade-lang.com/).
+
+;;; Code:
+
 (require 'font-lock)
 (require 'js)
 
@@ -55,6 +66,8 @@
     (comment-or-uncomment-region start end)
     (forward-line)))
 
+;; Inspired by http://xahlee.org/emacs/elisp_syntax_coloring.html
+
 (defconst jade-keywords
   (eval-when-compile
     (regexp-opt
diff --git a/stylus-mode.el b/stylus-mode.el
index b3b581c6d9..e756b2d303 100644
--- a/stylus-mode.el
+++ b/stylus-mode.el
@@ -1,10 +1,19 @@
-;;; stylus-mode.el --- Major mode for editing .jade files
-;;;
-;;; URL: https://github.com/brianc/jade-mode
-;;; Author: Brian M. Carlson and other contributors
-;;; Package-Requires: ((sws-mode "0"))
-;;;
-;;; copied from http://xahlee.org/emacs/elisp_syntax_coloring.html
+;;; slylus-mode.el --- Major mode for editing .styl files  -*- 
lexical-binding: t -*-
+
+;; Copyright 2011-2021  Brian Carlson
+
+;; Author: Brian M. Carlson and other contributors
+;; Version: 1.0.1
+;; Keywords: languages
+;; URL: https://github.com/brianc/jade-mode
+
+;;; Commentary:
+
+;; Major mode for the Stylus templating language
+;; (https://stylus-lang.com/).
+
+;;; Code:
+
 (require 'font-lock)
 (require 'sws-mode)
 
@@ -25,6 +34,8 @@
   "If line contains only spaces."
   (string-match-p "^[ ]*$" (stylus-line-as-string)))
 
+;;; copied from http://xahlee.org/emacs/elisp_syntax_coloring.html
+
 (defconst stylus-colours
   (eval-when-compile
     (regexp-opt
diff --git a/sws-mode.el b/sws-mode.el
index 51bd76f347..e4e425ba09 100644
--- a/sws-mode.el
+++ b/sws-mode.el
@@ -1,8 +1,18 @@
-;;; sws-mode.el --- (S)ignificant (W)hite(S)pace mode
-;;;
-;;; URL: https://github.com/brianc/jade-mode
-;;; Author: Brian M. Carlson and other contributors
-;;;
+;;; sws-mode.el --- (S)ignificant (W)hite(S)pace mode  -*- lexical-binding: t 
-*-
+
+;; Copyright 2011-2021  Brian Carlson
+
+;; Author: Brian M. Carlson and other contributors
+;; Version: 1.0.1
+;; Keywords: languages
+;; URL: https://github.com/brianc/jade-mode
+
+;;; Commentary:
+
+;; Common code for the jade-mode and stylus-mode.
+
+;;; Code:
+
 (require 'font-lock)
 
 (defvar sws-tab-width 2)



reply via email to

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