]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor cleanup
authorEshel Yaron <me@eshelyaron.com>
Tue, 14 Jan 2025 13:28:40 +0000 (14:28 +0100)
committerEshel Yaron <me@eshelyaron.com>
Tue, 14 Jan 2025 13:28:40 +0000 (14:28 +0100)
lisp/comint.el
lisp/imenu.el

index a674f7f7f7c5346198fe43fc1510f388338c98f5..fc3ebeff516b6379fa1298a750f0df8e76253282 100644 (file)
@@ -3482,7 +3482,7 @@ filename absolute.  For expansion see `expand-file-name' and
          (ol (make-overlay (nth 0 data) (nth 1 data) nil nil t)))
     (overlay-put ol 'field 'completion)
     (unwind-protect
-        (call-interactively 'minibuffer-completion-help)
+        (minibuffer-completion-help)
       (delete-overlay ol))))
 
 
index b58efa36bf1c1d7c12ac9155173b627b427f6f5d..e1771e9dc94ca99478775ce82e4216c6a5e5fa10 100644 (file)
@@ -108,7 +108,7 @@ If `on-mouse' use a popup menu when `imenu' was invoked with the mouse."
   "Hooks called after jumping to a place in the buffer.
 
 Useful things to use here include `reposition-window', `recenter', and
-\(lambda () (recenter 0)) to show at top of screen."
+(lambda () (recenter 0)) to show at top of screen."
   :type 'hook)
 
 ;;;###autoload
@@ -128,7 +128,7 @@ Set it to `imenu--sort-by-name' if you want alphabetic sorting.
 
 The function should take two arguments and return t if the first
 element should come before the second.  The arguments are cons cells;
-\(NAME . POSITION).  Look at `imenu--sort-by-name' for an example."
+(NAME . POSITION).  Look at `imenu--sort-by-name' for an example."
   :type '(choice (const :tag "No sorting" nil)
                 (const :tag "Sort by name" imenu--sort-by-name)
                  (function :tag "Another function")))
@@ -307,7 +307,7 @@ POSITION is passed to `imenu-default-goto-function', so it can be
 a non-number if that variable has been changed.
 
 Special elements look like
-\(INDEX-NAME POSITION FUNCTION ARGUMENTS...).
+(INDEX-NAME POSITION FUNCTION ARGUMENTS...).
 To \"go to\" a special element means applying FUNCTION to
 INDEX-NAME, POSITION, and the ARGUMENTS.