We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4d0b3a commit 6b5231fCopy full SHA for 6b5231f
eldoc-eask.el
@@ -41,16 +41,6 @@
41
:group 'tool
42
:link '(url-link :tag "Repository" "https://github.com/emacs-eask/eldoc-eask"))
43
44
-;;
45
-;; (@* "Util" )
46
47
-
48
-(defun eldoc-eask--s-replace (old new s)
49
- "Replace OLD with NEW in S each time it occurs."
50
- (if (fboundp #'string-replace)
51
- (string-replace old new s)
52
- (replace-regexp-in-string (regexp-quote old) new s t t)))
53
54
;;
55
;; (@* "Core" )
56
@@ -89,7 +79,7 @@ Mainly copy it from `elisp-eldoc-documentation-function' function."
89
79
(when doc
90
80
(setq str
91
81
(format "%s: %s"
92
- (eldoc-eask--s-replace
82
+ (eask-s-replace
93
83
"eask-f-" ""
94
84
(propertize (prin1-to-string
95
85
(plist-get plist :thing))
0 commit comments