File: plugins-Fix-a-copy-paste-typo.patch

package info (click to toggle)
devhelp 43.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,144 kB
  • sloc: ansic: 9,775; perl: 216; javascript: 152; sh: 98; xml: 66; python: 55; lisp: 29; makefile: 13
file content (22 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Mohammed Sadiq <sadiq@sadiqpk.org>
Date: Wed, 30 Nov 2022 16:32:52 +0530
Subject: plugins: Fix a copy paste typo

(cherry picked from commit 23148b2157d0269799e5eee15c236fe49d06da25)
---
 plugins/devhelp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/devhelp.el b/plugins/devhelp.el
index ca13bc6..d9d76f8 100644
--- a/plugins/devhelp.el
+++ b/plugins/devhelp.el
@@ -11,7 +11,7 @@
   "Searches for the current work in the Devhelp assistant"
   (interactive)
   (setq w (current-word))
-  (start-process-shell-command "devhelp" nil (concat "devhelp -s " w))
+  (start-process-shell-command "devhelp" nil (concat "devhelp -a " w))
   (set-process-query-on-exit-flag (get-process "devhelp") nil)
   )