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

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

[nongnu] elpa/helm 9e706bc154: Fix some more single quotes and also unnn


From: ELPA Syncer
Subject: [nongnu] elpa/helm 9e706bc154: Fix some more single quotes and also unnneded quoted paren
Date: Tue, 7 Jun 2022 11:59:44 -0400 (EDT)

branch: elpa/helm
commit 9e706bc154deab9b5932d7849eff249f7c4bf1c9
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    Fix some more single quotes and also unnneded quoted paren
---
 helm-core.el        | 28 ++++++++++++++--------------
 helm-dabbrev.el     |  6 +++---
 helm-elisp.el       |  2 +-
 helm-external.el    |  2 +-
 helm-grep.el        |  2 +-
 helm-lib.el         |  2 +-
 helm-mode.el        |  4 ++--
 helm-multi-match.el |  2 +-
 helm-source.el      |  4 ++--
 helm-utils.el       |  4 ++--
 10 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/helm-core.el b/helm-core.el
index 523105455c..f552ba105b 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -146,7 +146,7 @@ to use once started, e.g.:
 
     (helm-define-key-with-subkeys global-map
        (kbd \"C-x v n\") ?n \\='git-gutter:next-hunk
-       \\='((?p . git-gutter:previous-hunk))\)
+       \\='((?p . git-gutter:previous-hunk)))
 
 In this example, `C-x v n' will run `git-gutter:next-hunk'
 subsequent \"n\" will run this command again and subsequent \"p\"
@@ -400,8 +400,8 @@ Set this value to nil for no limit."
 
 (defcustom helm-exit-idle-delay 0
   "Idle time before exiting minibuffer while Helm is updating.
-Has no affect when helm-buffer is up to date \(i.e. exit without
-delay in this condition\)."
+Has no affect when helm-buffer is up to date (i.e. exit without
+delay in this condition)."
   :group 'helm
   :type 'float)
 
@@ -428,7 +428,7 @@ Specified as a pair of functions, where car is the restore
 function and cdr is the save function.
 
 To save and restore frame configuration, set this variable to
-'\(set-frame-configuration . current-frame-configuration\)
+\\='(set-frame-configuration . current-frame-configuration)
 
 NOTE: This may not work properly with own-frame minibuffer
 settings.  Older versions saves/restores frame configuration, but
@@ -1830,7 +1830,7 @@ Helm aborts in some special circumstances.  See
 (defvar helm-buffers nil
   "Helm buffers listed in order of most recently used.")
 (defvar helm-current-position nil
-  "Cons of \(point . window-start\)  when Helm is invoked.
+  "Cons of (point . window-start)  when Helm is invoked.
 `helm-current-buffer' uses this to restore position after
 `helm-keyboard-quit'")
 (defvar helm-last-frame-or-window-configuration nil
@@ -1840,7 +1840,7 @@ Helm aborts in some special circumstances.  See
 (defvar helm--mode-line-string-real nil) ; The string to display in mode-line.
 (defvar helm-persistent-action-display-window nil)
 (defvar helm-marked-candidates nil
-  "Marked candidates.  List of \(source . real\) pair.")
+  "Marked candidates.  List of (source . real) pair.")
 (defvar helm--mode-line-display-prefarg nil)
 (defvar helm--temp-follow-flag nil
   "[INTERNAL] A simple flag to notify persistent action we are following.")
@@ -2182,7 +2182,7 @@ when predicate helm-ff-candidates-lisp-p returns non-nil:
 \(helm-add-action-to-source-if \"Byte compile file async\"
                               \\='async-byte-compile-file
                               helm-source-find-files
-                              \\='helm-ff-candidates-lisp-p\)."
+                              \\='helm-ff-candidates-lisp-p)."
   (let* ((actions     (helm-get-attr 'action source 'ignorefn))
          (action-transformers (helm-get-attr 'action-transformer source))
          (new-action  (list (cons name fn)))
@@ -2515,7 +2515,7 @@ was deleted and the candidates list not updated."
   "From SOURCE apply FUNCTIONS on ARGS.
 
 This function is used to process filter functions.  When filter is
-a \`filtered-candidate-transformer', we pass to ARGS
+a `filtered-candidate-transformer', we pass to ARGS
 candidates+source whereas when the filter is
 `candidate-transformer' we pass to ARGS candidates only.
 This function is also used to process functions called with no
@@ -4213,8 +4213,8 @@ maybe filtered CANDIDATES."
 This overrides `helm-candidate-number-limit' variable.
 
 E.g.:
-If \(candidate-number-limit\) is in SOURCE, show all candidates in SOURCE.
-If \(candidate-number-limit . 123\) is in SOURCE limit candidate to 123."
+If (candidate-number-limit) is in SOURCE, show all candidates in SOURCE.
+If (candidate-number-limit . 123) is in SOURCE limit candidate to 123."
   (helm-aif (assq 'candidate-number-limit source)
       ;; When assoc value is nil use by default 99999999 otherwise use
       ;; the assoc value, when it is a symbol interpret its value (bug#1831).
@@ -4223,7 +4223,7 @@ If \(candidate-number-limit . 123\) is in SOURCE limit 
candidate to 123."
 
 (defun helm-candidate-get-display (candidate)
   "Get searched display part from CANDIDATE.
-CANDIDATE is either a string, a symbol, or a \(DISPLAY . REAL\)
+CANDIDATE is either a string, a symbol, or a (DISPLAY . REAL)
 cons cell."
   (cond ((car-safe candidate))
         ((symbolp candidate)
@@ -4769,7 +4769,7 @@ Unlike `while-no-input' this macro ensure to not returns 
`t'."
   "Return a list of matches for each source in SRC-LIST.
 
 The resulting value is a list of lists, e.g. ((a b c) (c d) (e
-f)) or \(nil nil nil) for three sources when no matches found,
+f)) or (nil nil nil) for three sources when no matches found,
 however this function can be interrupted by new input and in this
 case returns a plain nil i.e. not (nil), in this case
 `helm-update' is not rendering the source, keeping previous
@@ -5673,7 +5673,7 @@ It has no effect if `helm-echo-input-in-header-line' is 
nil."
 (defun helm-show-candidate-number (&optional name)
   "Used to display candidate number in mode-line.
 You can specify NAME of candidates e.g. \"Buffers\" otherwise it
-is \"Candidate\(s\)\" by default."
+is \"Candidate(s)\" by default."
   (when helm-alive-p
     (unless (helm-empty-source-p)
       ;; Build a fixed width string when candidate-number < 1000
@@ -6672,7 +6672,7 @@ without looping again through the whole list.")
   "Register BUFFER-SPEC with DATA for a helm candidates-in-buffer session.
 
 Arg BUFFER-SPEC can be a `buffer-name' (stringp), a buffer-spec
-object \(bufferp), or a symbol, either \\='local or \\='global which is
+object (bufferp), or a symbol, either \\='local or \\='global which is
 passed to `helm-candidate-buffer'.
 The most common usage of BUFFER-SPEC is \\='global.
 
diff --git a/helm-dabbrev.el b/helm-dabbrev.el
index bd1deb6653..f214c50fd3 100644
--- a/helm-dabbrev.el
+++ b/helm-dabbrev.el
@@ -72,12 +72,12 @@ When nil all buffers are considered related to 
`current-buffer'."
 
 This allow helm-dabbrev searching in buffers with the associated
 `major-mode'.
-E.g. \(emacs-lisp-mode . lisp-interaction-mode\)
+E.g. (emacs-lisp-mode . lisp-interaction-mode)
 
 will allow searching in the lisp-interaction-mode buffer when
 `current-buffer' is an `emacs-lisp-mode' buffer and vice versa
-i.e. no need to provide \(lisp-interaction-mode .
-emacs-lisp-mode\) association.
+i.e. no need to provide (lisp-interaction-mode .
+emacs-lisp-mode) association.
 
 When nil check is the searched buffer has same `major-mode' than
 the `current-buffer'.
diff --git a/helm-elisp.el b/helm-elisp.el
index bdc9939fc6..4216c92b26 100644
--- a/helm-elisp.el
+++ b/helm-elisp.el
@@ -274,7 +274,7 @@ of symbol before point."
 
 (defun helm-bounds-of-thing-before-point (&optional regexp)
   "Get the beginning and end position of `helm-thing-before-point'.
-Return a cons \(beg . end\)."
+Return a cons (beg . end)."
   (helm-thing-before-point 'limits regexp))
 
 (defun helm-insert-completion-at-point (beg end str)
diff --git a/helm-external.el b/helm-external.el
index fcc4f7f704..b7808361c2 100644
--- a/helm-external.el
+++ b/helm-external.el
@@ -39,7 +39,7 @@ This will be use with `format', so use something like 
\"wmctrl -xa %s\"."
 (defcustom helm-external-programs-associations nil
   "Alist to store externals programs associated with file extension.
 This variable overhide setting in .mailcap file.
-E.g.: \\='\(\(\"jpg\" . \"gqview\"\) (\"pdf\" . \"xpdf\"\)\) "
+E.g.: \\='((\"jpg\" . \"gqview\") (\"pdf\" . \"xpdf\")) "
   :type '(alist :key-type string :value-type string)
   :group 'helm-external)
 
diff --git a/helm-grep.el b/helm-grep.el
index e3ca06d0aa..135f8017da 100644
--- a/helm-grep.el
+++ b/helm-grep.el
@@ -90,7 +90,7 @@ because ack disable it when output is piped.
 
 Same for grep you can use safely the option \"--color=always\" (default).
 You can customize the color of matches using GREP_COLORS env var.
-e.g: \(setenv \"GREP_COLORS\"
+e.g: (setenv \"GREP_COLORS\"
               \"ms=30;43:mc=30;43:sl=01;37:cx=:fn=35:ln=32:bn=32:se=36\")
 
 To enable ANSI color in git-grep just add \"--color=always\".
diff --git a/helm-lib.el b/helm-lib.el
index 7a85e16cd4..565db187af 100644
--- a/helm-lib.el
+++ b/helm-lib.el
@@ -827,7 +827,7 @@ See `helm-help-hkmap' for supported keys and functions."
     (nreverse result)))
 
 (defun helm-mklist (obj)
-  "If OBJ is a list \(but not lambda\), return itself.
+  "If OBJ is a list (but not lambda), return itself.
 Otherwise make a list with one element."
   (if (and (listp obj) (not (functionp obj)))
       obj
diff --git a/helm-mode.el b/helm-mode.el
index 4503d5f5c4..5607cd41a9 100644
--- a/helm-mode.el
+++ b/helm-mode.el
@@ -294,7 +294,7 @@ There are three possible values to use:
 
 For a better experience with emacs style, if you don't know what to use, set
 `completion-styles' to \\='(flex) if you are using emacs-27 or to
-\'(helm-flex) if you are using emacs-26 and keep \\='emacs as default
+\\='(helm-flex) if you are using emacs-26 and keep \\='emacs as default
 value for `helm-completion-style'.  Advanced users can also have a
 look to `completion-category-overrides' to set styles according to category.
 You can as well use `helm-completion-styles-alist' to override
@@ -393,7 +393,7 @@ SORT-FN is a predicate to sort COLLECTION.
 ALISTP when non--nil will not use `all-completions' to collect
 candidates because it doesn't handle alists correctly for helm.
 i.e In `all-completions' the car of each pair is used as value.
-In helm we want to use the cdr instead like \(display . real\),
+In helm we want to use the cdr instead like (display . real),
 so we return the alist as it is with no transformation by
 `all-completions'.
 
diff --git a/helm-multi-match.el b/helm-multi-match.el
index 0e55cdb152..173df2ab91 100644
--- a/helm-multi-match.el
+++ b/helm-multi-match.el
@@ -80,7 +80,7 @@ If GREP-SPACE is used translate escaped space to \"\\s\" 
instead of \"\\s-\"."
     (if grep-space "\\s" "\\s-") pattern nil t)))
 
 (defun helm-mm-1-make-regexp (pattern)
-  "Replace spaces in PATTERN with \"\.*\"."
+  "Replace spaces in PATTERN with \".*\"."
   (mapconcat 'identity (helm-mm-split-pattern pattern) ".*"))
 
 
diff --git a/helm-source.el b/helm-source.el
index 35d22c57fc..6b43823467 100644
--- a/helm-source.el
+++ b/helm-source.el
@@ -599,8 +599,8 @@
     :documentation
     "  Function called with no parameters at end of initialization
   when `helm-resume' is started.
-  If this function try to do something against `helm-buffer', \(e.g updating,
-  searching etc...\) probably you should run it in a timer to ensure
+  If this function try to do something against `helm-buffer', (e.g updating,
+  searching etc...) probably you should run it in a timer to ensure
   `helm-buffer' is ready.")
 
    (follow
diff --git a/helm-utils.el b/helm-utils.el
index 10e7ed46de..048bc5dc64 100644
--- a/helm-utils.el
+++ b/helm-utils.el
@@ -628,7 +628,7 @@ from its directory."
 
 (defun helm-generic-sort-fn (s1 s2)
   "Sort predicate function for helm candidates.
-Args S1 and S2 can be single or \(display . real\) candidates,
+Args S1 and S2 can be single or (display . real) candidates,
 that is sorting is done against real value of candidate."
   (let* ((qpattern (regexp-quote helm-pattern))
          (reg1  (concat "\\_<" qpattern "\\_>"))
@@ -726,7 +726,7 @@ Availables keys are:
 - STRING: When non--nil (default) `helm-file-attributes' return
           more friendly values.
 If you want the same behavior as `files-attributes' ,
-\(but with return values in proplist\) use a nil value for STRING.
+\(but with return values in proplist) use a nil value for STRING.
 However when STRING is non--nil, time and type value are different from what
 you have in `file-attributes'."
   (helm-aif (file-attributes file string)



reply via email to

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