-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from anarcat/prepare-for-0.4-release
Prepare for 0.4 release
- Loading branch information
Showing
2 changed files
with
50 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,11 +7,10 @@ | |
;; Author: Bozhidar Batsov <[email protected]> | ||
;; Sebastian Wiesner <[email protected]> | ||
;; Russ Allbery <[email protected]> | ||
;; Maintainer: Bozhidar Batsov <[email protected]> | ||
;; Sebastian Wiesner <[email protected]> | ||
;; Maintainer: Tim Meusel <[email protected]> | ||
;; URL: https://github.com/voxpupuli/puppet-mode | ||
;; Keywords: languages | ||
;; Version: 0.4-cvs | ||
;; Version: 0.4 | ||
;; Package-Requires: ((emacs "24.1") (pkg-info "0.4")) | ||
|
||
;; This file is not part of GNU Emacs. | ||
|
@@ -146,7 +145,7 @@ buffer-local wherever it is set." | |
:type 'boolean | ||
:group 'puppet | ||
:safe 'booleanp | ||
:package-version '(puppet-mode . "0.3")) | ||
:package-version '(puppet-mode . "0.4")) | ||
|
||
(defcustom puppet-validate-command "puppet parser validate --color=false" | ||
"Command to validate the syntax of a Puppet manifest." | ||
|
@@ -160,13 +159,13 @@ buffer-local wherever it is set." | |
"Command to lint a Puppet manifest." | ||
:type 'string | ||
:group 'puppet | ||
:package-version '(puppet-mode . "0.3")) | ||
:package-version '(puppet-mode . "0.4")) | ||
|
||
(defcustom puppet-apply-command "puppet apply --verbose --noop" | ||
"Command to apply a Puppet manifest." | ||
:type 'string | ||
:group 'puppet | ||
:package-version '(puppet-mode . "0.3")) | ||
:package-version '(puppet-mode . "0.4")) | ||
|
||
(defcustom puppet-repl-command "puppet debugger" | ||
"The Puppet REPL command used to interact with code." | ||
|
@@ -190,13 +189,13 @@ buffer-local wherever it is set." | |
'((t :inherit font-lock-constant-face)) | ||
"Face for regular expression literals in Puppet." | ||
:group 'puppet | ||
:package-version '(puppet-mode . "0.3")) | ||
:package-version '(puppet-mode . "0.4")) | ||
|
||
(defface puppet-escape-sequence | ||
'((t :inherit font-lock-constant-face)) | ||
"Face for escape sequences in double-quoted strings-consed literals in Puppet." | ||
:group 'puppet | ||
:package-version '(puppet-mode . "0.3")) | ||
:package-version '(puppet-mode . "0.4")) | ||
|
||
|
||
;;; Version information | ||
|