From: Mike McLean <mike.mclean@pobox.com>
To: Mike McLean <mike.mclean@pobox.com>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: Bug: Tag Completion Not Prompting for all tags
Date: Wed, 4 Apr 2012 13:38:03 -0400 [thread overview]
Message-ID: <CANid5Q4xLvKdck2wjbG04Vbmt32QZBSfsqGWVFuAhANM3Fm+vA@mail.gmail.com> (raw)
In-Reply-To: <D6E92C58-02EB-4A2F-AFD2-C06881C71EA3@pobox.com>
[-- Attachment #1: Type: text/plain, Size: 3259 bytes --]
FYI
I saw the other thread related to org-tag-fast-selection and Ido mode, so I
just re tested my minimal example below. I get the same error with:
release_7.8.07-207-g5d9c
Org-mode version 7.8.08 (release_7.8.07.207.g5d9c)
This version includes the April 3 commit e48d67ed6 that mentions "bug when
gathering tag completion options"
Mike
On Tuesday, April 3, 2012, Mike McLean wrote:
> OK - sorry, it took an extra day. Here is the new (third, and hopefully
> last) test case.
> 1 Steps to Reproduce:
> 1.1 Start Emacs clean
>
> /Applications/Emacs.app/Contents/MacOS/Emacs -Q
>
> 1.1.1 Note: Emacs Version
>
> M-x emacs-version <RET>
> GNU Emacs 24.0.95.1 (x86_64-apple-darwin, NS apple-appkit-1038.36) of 2012-04-03 on bob.porkrind.org
>
> 1.2 Clone Git HEAD Org-Mode (to get the new commit)
>
> $ git clone git://orgmode.org/org-mode.git
>
> 1.3 Load Cloned version of org-mode
>
> Evaluate the following Lisp in *scratch*
>
> (require 'ido)
> (ido-mode t)
>
> (setq load-path (cons "~/tmp/new-new-new/org-mode/lisp" load-path))
> (setq load-path (cons "~/tmp/new-new-new/org-mode/contrib/lisp" load-path))
> (require 'org-install)
> (setq org-completion-use-ido t)
> (setq org-tag-alist (quote (
> (:startgroup)
> ("tag_a" . ?a)
> ("tag_b" . ?b)
> (:endgroup)
> ("tag_c" . ?c)
> )))
>
> 1.4 Open the following org-mode file
>
> * Header 1
> ** Header 1.1
> * Header 2 :Personal:
>
> 1.4.1 Note: Org-Version
>
> M-x org-version <RET>
> release_7.8.07-201-g72d9
> Org-mode version 7.8.08 (release_7.8.07.201.g72d9)
>
> 1.5 Point should be on the first asterisk for “Header 1”
> 1.6 Type C-c C-q to bring up Tag selection
>
> The expected result is the fast tag selection window-split; this works
> 1.7 Type <TAB> to enter free tag selection
>
> The expected result is that the Minibuffer prompts with Tag: and the ido completion
> (this works)
> 1.8 Type t to begin to ido select one of the tags
>
> The expected result is the ido completion narrowing the choices; the
> result
>
> Error in post-command-hook (ido-exhibit): (wrong-type-argument sequencep 97)
>
> Note that M-x toggle-debug-on-error doesn’t show anything different than
> the above.
>
> On Apr 2, 2012, at 11:50 AM, Bastien wrote:
>
> Hi Mike,
>
> Mike McLean <mike.mclean@pobox.com <javascript:_e({}, 'cvml',
> 'mike.mclean@pobox.com');>> writes:
>
> The dangers of minimal testing setups is rearing its ugly head.
>
>
> You bet :)
>
> I can
>
> confirm that your latest patch does fix the minimal example that I
>
> provided. It does not, sadly, fix a similar case where the
>
> org-tag-alist variable includes the :startgroup and :endgroup tokens.
>
> If you can my most recent steps to reproduce, step 1.3, and add those
>
> tokens, the error is "Wrong type argument: stringp, :endgroup"
>
>
> Can you resubmit the full test case?
>
> Thank you for you patience :)
>
>
> Thanks for your collaboration :)
>
> --
> Bastien
>
>
>
[-- Attachment #2: Type: text/html, Size: 13092 bytes --]
next prev parent reply other threads:[~2012-04-04 17:38 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-24 15:50 Bug: Tag Completion Not Prompting for all tags Mike McLean
2012-03-24 16:03 ` Bastien
2012-03-24 16:43 ` Mike McLean
2012-03-27 10:31 ` Bastien
2012-03-30 0:43 ` Mike McLean
2012-03-31 9:17 ` Bastien
2012-04-02 15:26 ` Mike McLean
2012-04-02 15:27 ` Mike McLean
2012-04-02 15:45 ` Bastien
2012-04-02 15:50 ` Bastien
2012-04-02 19:19 ` Mike McLean
2012-04-02 19:19 ` Mike McLean
2012-04-04 1:00 ` Mike McLean
2012-04-04 17:38 ` Mike McLean [this message]
2012-04-06 4:38 ` Matt Lundin
2012-04-10 18:48 ` Mike McLean
2012-04-10 16:38 ` Bastien
2012-04-10 18:40 ` Mike McLean
2012-04-11 8:08 ` Bastien
2012-04-11 11:57 ` Mike McLean
2012-04-11 12:11 ` Mike McLean
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
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CANid5Q4xLvKdck2wjbG04Vbmt32QZBSfsqGWVFuAhANM3Fm+vA@mail.gmail.com \
--to=mike.mclean@pobox.com \
--cc=emacs-orgmode@gnu.org \
/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 public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).