2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
+ * minibuffer.el (completion--twq-all): Again, allow case differences.
+
* term.el: Move keymap initialization code to be more idiomatic.
(term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
(term-terminal-menu): Move initialization into declaration.
(`(,qfullpos . ,qfun)
(funcall requote (+ boundary (length prefix)) string))
(qfullprefix (substring string 0 qfullpos))
- (_ (assert (let ((uboundarystr (substring ustring 0 boundary)))
- (equal (funcall unquote qfullprefix)
- (concat uboundarystr prefix)))))
+ (_ (assert (eq t (compare-strings
+ (funcall unquote qfullprefix) nil nil
+ (concat (substring ustring 0 boundary) prefix)
+ nil nil 'ignore-case))))
(qboundary (car (funcall requote boundary string)))
(_ (assert (<= qboundary qfullpos)))
;; FIXME: this split/quote/concat business messes up the carefully