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

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

[elpa] externals/mmm-mode a5929edcc1 1/8: Update comments and docstrings


From: ELPA Syncer
Subject: [elpa] externals/mmm-mode a5929edcc1 1/8: Update comments and docstrings in mmm-rpm.el
Date: Thu, 22 Feb 2024 00:58:17 -0500 (EST)

branch: externals/mmm-mode
commit a5929edcc149a9483dd3f1392d7a54de03959aee
Author: Ola Nilsson <ola.nilsson@gmail.com>
Commit: Ola Nilsson <ola.nilsson@gmail.com>

    Update comments and docstrings in mmm-rpm.el
---
 mmm-rpm.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/mmm-rpm.el b/mmm-rpm.el
index b69394900d..aa0fc1eed7 100644
--- a/mmm-rpm.el
+++ b/mmm-rpm.el
@@ -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 <stigb@tihlde.hist.no> and Steve
-;; Sanbeg <sanbeg@dset.com> (http://www.xemacs.org/~stigb/rpm-spec-mode.el)
+;; Sanbeg <sanbeg@dset.com> (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



reply via email to

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