-
Notifications
You must be signed in to change notification settings - Fork 33
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 #140 from snogge/docs-installation-home
Update the installation instructions in the manual, and some small stuff
- Loading branch information
Showing
6 changed files
with
41 additions
and
33 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
;; Package: mmm-mode | ||
;; Author: Michael Abraham Shulman <[email protected]> | ||
;; Maintainer: Dmitry Gutov <[email protected]> | ||
;; URL: https://github.com/purcell/mmm-mode | ||
;; URL: https://github.com/dgutov/mmm-mode | ||
;; Keywords: convenience, faces, languages, tools | ||
;; Version: 0.5.10 | ||
;; Package-Requires: ((emacs "25.1") (cl-lib "0.2")) | ||
|
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
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 |
---|---|---|
|
@@ -27,9 +27,9 @@ | |
|
||
;; This file contains the definition of an MMM Mode submode class for | ||
;; editing shell script sections within RPM (Redhat Package Manager) | ||
;; spec files. I recommend to use it in combination with | ||
;; spec files. I recommend to use it in combination with | ||
;; rpm-spec-mode.el by Stig Bjørlykke <[email protected]> and Steve | ||
;; Sanbeg <[email protected]> (http://www.xemacs.org/~stigb/rpm-spec-mode.el) | ||
;; Sanbeg <[email protected]> (https://github.com/stigbjorlykke/rpm-spec-mode) | ||
|
||
;;; Installation: | ||
|
||
|
@@ -47,19 +47,19 @@ | |
(defconst mmm-rpm-sh-start-tags | ||
'("prep" "build" "install" "clean" "preun" "postun" "pre" | ||
"post" "triggerin" "triggerun" "triggerpostun") | ||
"List containing RPM tags that start a shell-script section in a spec file") | ||
"List containing RPM tags that start a shell-script section in a spec file.") | ||
|
||
(defvar mmm-rpm-sh-end-tags | ||
(append '("files" "description" "package") mmm-rpm-sh-start-tags) | ||
"List containing RPM tags that end a shell-script section in a spec file") | ||
"List containing RPM tags that end a shell-script section in a spec file.") | ||
|
||
(defvar mmm-rpm-sh-start-regexp | ||
(concat "^%" (mmm-regexp-opt mmm-rpm-sh-start-tags t) "\\b.*$") | ||
"Regexp matching RPM tags that start a shell-script section in a spec file") | ||
"Regexp matching RPM tags that start a shell-script section in a spec file.") | ||
|
||
(defvar mmm-rpm-sh-end-regexp | ||
(concat "\\'\\|^%" (mmm-regexp-opt mmm-rpm-sh-end-tags t) "\\b.*$") | ||
"Regexp matching RPM tags that end a shell-script section in a spec file") | ||
"Regexp matching RPM tags that end a shell-script section in a spec file.") | ||
|
||
(mmm-add-group | ||
'rpm | ||
|
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