1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

* pcomplete.el (pcomplete-std-complete): Fix last minute typo.

This commit is contained in:
Stefan Monnier 2011-04-29 14:33:30 -03:00
parent 14a7fbd8c2
commit 20e0e05f00

View File

@ -545,7 +545,7 @@ Same as `pcomplete' but using the standard completion UI."
;; variables to parse args, so there's no point autoloading it.
;; ;;;###autoload
(defun pcomplete-std-complete ()
(let ((data pcomplete-completions-at-point))
(let ((data (pcomplete-completions-at-point)))
(completion-in-region (nth 0 data) (nth 1 data) (nth 2 data)
(plist-get :predicate (nthcdr 3 data)))))