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

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

[elpa] externals/shell-command+ b5ebe5eab7 4/4: Sharp-quote function sym


From: ELPA Syncer
Subject: [elpa] externals/shell-command+ b5ebe5eab7 4/4: Sharp-quote function symbols when modifying symbol plist
Date: Sat, 27 Aug 2022 13:57:58 -0400 (EDT)

branch: externals/shell-command+
commit b5ebe5eab79c9f5e737141d6f3f2383ac05e3156
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Sharp-quote function symbols when modifying symbol plist
    
    This will trigger a warning if there were to be a typo somewhere.  We
    are already doing the same in 'shell-command+-features'.
---
 shell-command+.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/shell-command+.el b/shell-command+.el
index 22d0cd5484..d0b2f126e9 100644
--- a/shell-command+.el
+++ b/shell-command+.el
@@ -157,7 +157,7 @@ For PARSE, FORM and CONTEXT see `shell-command+-features'."
                 (t form))
           context)))
 
-(put 'shell-command+-redirect-output
+(put #'shell-command+-redirect-output
      'shell-command+-docstring
      "When COMMAND starts with...
   <  the output of COMMAND replaces the current selection
@@ -194,7 +194,7 @@ For PARSE, FORM and CONTEXT see `shell-command+-features'."
            buffer-file-name (nth 3 parse))))
   (list parse form context))
 
-(put 'shell-command+-expand-%
+(put #'shell-command+-expand-%
      'shell-command+-docstring
      "Inside COMMAND, % is replaced with the current file name.  To
 insert a literal % quote it using a backslash.")
@@ -220,7 +220,7 @@ For PARSE, FORM and CONTEXT see `shell-command+-features'."
          (shell-command+-expand-%-fmt-spec)))
   (list parse form context))
 
-(put 'shell-command+-expand-%-fmt
+(put #'shell-command+-expand-%-fmt
      'shell-command+-docstring
      "Inside COMMAND, replace the following %-sequences:
 
@@ -259,7 +259,7 @@ For PARSE, FORM and CONTEXT see `shell-command+-features'."
                   (funcall fn input beg end)))
             context))))
 
-(put 'shell-command+-implicit-cd
+(put #'shell-command+-implicit-cd
      'shell-command+-docstring
      "If COMMAND is prefixed with an absolute or relative path, the
 created process will the executed in the specified path.
@@ -373,7 +373,7 @@ PARSE, FORM and CONTEXT see `shell-command+-features'."
               form))
           context)))
 
-(put 'shell-command+-command-substitution
+(put #'shell-command+-command-substitution
      'shell-command+-docstring
      "If the first word in COMMAND, matches an entry in the alist
 `shell-command+-substitute-alist', the respective function is
@@ -505,7 +505,7 @@ entire command."
     (buffer-string)))
 
 ;;;###autoload
-(put 'shell-command+ 'function-documentation
+(put #'shell-command+ 'function-documentation
      '(shell-command+--make-docstring))
 
 ;;;###autoload



reply via email to

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