emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: address@hidden: completion of coding systems]


From: Richard Stallman
Subject: Re: address@hidden: completion of coding systems]
Date: Sun, 14 Oct 2007 21:36:58 -0400

    +   int count = SPECPDL_INDEX ();
    + 
        if (SYMBOLP (default_coding_system))
          default_coding_system = SYMBOL_NAME (default_coding_system);
    +   specbind (intern ("completion-ignore-case"), Qt);
        val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil,
                              Qt, Qnil, Qcoding_system_history,
                              default_coding_system, Qnil);
    +   unbind_to (count, Qnil);

That would work, but it would be cleaner to use 

    specbind (Qcompletion_ignore_case, Qt);

instead of interning it again.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]