Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions bash-completion.el
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ passed to the parameter OPEN-QUOTE.

This function is not meant to be called outside of
`bash-completion-dynamic-complete'."
(let* ((wordbreak-split (bash-completion-last-wordbreak-split stub))
(let* ((wordbreak-split (bash-completion-last-wordbreak-split parsed-stub))
(before-wordbreak (nth 0 wordbreak-split))
(after-wordbreak (nth 1 wordbreak-split))
(separator (nth 2 wordbreak-split))
Expand Down Expand Up @@ -1238,7 +1238,8 @@ Call `bash-completion-dynamic' or `bash-completion-nocomint'."
result)))
(make-obsolete
'bash-completion-dynamic-complete-0
"call bash-completion-dynamic or bash-completion-dynamic-nocomint")
"call bash-completion-dynamic or bash-completion-dynamic-nocomint"
"2.1")

(defun bash-completion-dynamic-try-wordbreak-complete (stub stub-start pos open-quote)
"Obsolete function, kept for backward compatibility.
Expand All @@ -1252,7 +1253,8 @@ be called from outside bash-completion.
(cons (buffer-substring-no-properties (car result) pos) result)))
(make-obsolete
'bash-completion-dynamic-try-wordbreak-complete
'bash-completion--try-wordbreak-complete)
'bash-completion--try-wordbreak-complete
"2.1")

(provide 'bash-completion)
;;; bash-completion.el ends here