string, before printing common completions.
+2002-09-26 Stephen Eglen <stephen@gnu.org>
+
+ * iswitchb.el (iswitchb-completions): Test that
+ iswitchb-common-match-string is a string, before printing common
+ completions.
+
2002-09-24 Simon Josefsson <jas@extundo.com>
* mail/mail-extr.el (mail-extr-ignore-single-names): Change default.
;; put in common completion item -- what you get by
;; pressing tab
- (if (> (length iswitchb-common-match-string) (length name))
+ (if (and (stringp iswitchb-common-match-string)
+ (> (length iswitchb-common-match-string) (length name)))
(concat open-bracket-determined
(substring iswitchb-common-match-string
(length name))