From: Per Starbäck Date: Sat, 1 Oct 2011 02:38:46 +0000 (-0700) Subject: * lisp/pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. X-Git-Tag: emacs-pretest-24.0.91~235 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=63bd50d334b7761da2345710da3ad7628b9b7f7e;p=emacs.git * lisp/pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. Fixes: debbugs:9643 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 38651d42596..ca8545d7ccd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-10-01 Per Starbäck + + * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643) + 2011-09-30 Martin Rudalics * startup.el (command-line-1): Fix last fix by inserting diff --git a/lisp/pcmpl-gnu.el b/lisp/pcmpl-gnu.el index 62f5fafe2c4..6bc4f7625bb 100644 --- a/lisp/pcmpl-gnu.el +++ b/lisp/pcmpl-gnu.el @@ -298,7 +298,7 @@ (mapcar (function (lambda (entry) - (tar-header-name (cdr entry)))) + (tar-header-name entry))) tar-parse-info)) (pcomplete-entries)) nil 'identity))))