summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2017-01-07 12:37:06 -0700
committerSean Whitton <spwhitton@spwhitton.name>2017-01-07 12:54:48 -0700
commitebebb4919eeee98b50e711ecedc1708b4d4066f6 (patch)
tree38e2e77cb62585846df5614e4c33f6f62410e9c1
parent4f1b76cc45a5eb5fd2d8f0bbe2f1e59ad48ade63 (diff)
support emacs25
-rw-r--r--debian/haml-elisp.emacsen-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/haml-elisp.emacsen-install b/debian/haml-elisp.emacsen-install
index b3d88df..a4eb66b 100644
--- a/debian/haml-elisp.emacsen-install
+++ b/debian/haml-elisp.emacsen-install
@@ -1,10 +1,10 @@
#!/bin/sh
set -e
SRC_FILE="haml-mode.el"
-# Right now only emacs23 and emacs24 are supported. If the future
+# Right now only emacs23, emacs24 and emacs25 are supported. If the future
# brings support for other emacsen, we can keep this same logic - just
# update this regex
-SUPPORTED_EMACSEN="^emacs2[34]$"
+SUPPORTED_EMACSEN="^emacs2[345]$"
FLAVOR="$1"
if echo $FLAVOR | egrep -vq $SUPPORTED_EMACSEN; then