branch: elpa/dockerfile-mode commit 52f821c9cdc7971933f5e758562890a6425920af Author: Steve Purcell <st...@sanityinc.com> Commit: Steve Purcell <st...@sanityinc.com>
Add missing package dependency on "s" --- dockerfile-mode.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dockerfile-mode.el b/dockerfile-mode.el index 312a354568..6cceb1b1fc 100644 --- a/dockerfile-mode.el +++ b/dockerfile-mode.el @@ -1,7 +1,7 @@ ;;; dockerfile-mode.el --- Major mode for editing Docker's Dockerfiles ;; Copyright (c) 2013 Spotify AB -;; Package-Requires: ((emacs "24")) +;; Package-Requires: ((emacs "24") (s "1.12")) ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); you may not ;; use this file except in compliance with the License. You may obtain a copy of @@ -19,6 +19,8 @@ (require 'sh-script) (require 'rx) +(require 's) + (declare-function cygwin-convert-file-name-to-windows "cygw32.c" (file &optional absolute-p))