From: Stephen Berman <stephen.berman@gmx.net>
To: Tim Van Holder <tim.vanholder@gmail.com>
Cc: 7206@debbugs.gnu.org
Subject: bug#7206: 24.0.50; Bugs with minibuffer completion
Date: Wed, 13 Oct 2010 20:40:13 +0200 [thread overview]
Message-ID: <87fwwa0wdu.fsf@escher.home> (raw)
In-Reply-To: <877hhme9r8.fsf@leeloo.anubex.internal> (Tim Van Holder's message of "Wed, 13 Oct 2010 11:12:59 +0200")
[-- Attachment #1: Type: text/plain, Size: 769 bytes --]
On Wed, 13 Oct 2010 11:12:59 +0200 Tim Van Holder <tim.vanholder@gmail.com> wrote:
> Current bzr (r101947) has 2 issues with completion in the minibuffer:
>
> Recipe:
>
> $ emacs -Q
> C-x C-f
>
> Issue #1:
>
> Enter anything that has a non-unique completion (or don't enter
> anything at all after ther default directory name prompt), and press
> [tab]. Instead of getting the "[Complete, but not unique]" prompt, you
> get an error instead:
> minibuffer-completion-help: Wrong type argument: listp, 0
> (the integer varies).
> This also happens with non-path completions (e.g. C-h f).
This is due to this change:
2010-10-13 IRIE Shinsuke <irieshinsuke@yahoo.co.jp> (tiny change)
* subr.el (last): Make it faster. (Bug#7174)
Here is a fix:
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: fix for last --]
[-- Type: text/x-patch, Size: 919 bytes --]
*** /data/steve/bzr/emacs/trunk/lisp/subr.el 2010-10-13 14:41:39.000000000 +0200
--- /data/steve/bzr/emacs/quickfixes/lisp/subr.el 2010-10-13 20:34:46.000000000 +0200
***************
*** 290,299 ****
If N is bigger than the length of LIST, return LIST."
(if n
(and (> n 0)
! (let ((m (length list)))
(if (< n m) (nthcdr (- m n) list) list)))
(and list
! (nthcdr (1- (length list)) list))))
(defun butlast (list &optional n)
"Return a copy of LIST with the last N elements removed."
--- 290,299 ----
If N is bigger than the length of LIST, return LIST."
(if n
(and (> n 0)
! (let ((m (safe-length list)))
(if (< n m) (nthcdr (- m n) list) list)))
(and list
! (nthcdr (1- (safe-length list)) list))))
(defun butlast (list &optional n)
"Return a copy of LIST with the last N elements removed."
[-- Attachment #3: Type: text/plain, Size: 14 bytes --]
Steve Berman
next prev parent reply other threads:[~2010-10-13 18:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-13 9:12 bug#7206: 24.0.50; Bugs with minibuffer completion Tim Van Holder
2010-10-13 18:40 ` Stephen Berman [this message]
2010-10-13 23:14 ` Juanma Barranquero
2010-10-14 8:20 ` Tim Van Holder
2010-10-14 10:12 ` Juanma Barranquero
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87fwwa0wdu.fsf@escher.home \
--to=stephen.berman@gmx.net \
--cc=7206@debbugs.gnu.org \
--cc=tim.vanholder@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.