emacs-pretest-bug
[Top][All Lists]
Advanced

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

Re: tabbar-mode breaks debugging with match data


From: Stefan Monnier
Subject: Re: tabbar-mode breaks debugging with match data
Date: Mon, 14 Mar 2005 08:17:23 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

> !        ;; Return `mode-name' if not blank, `major-mode' otherwise.
> !        (if (and (stringp mode-name)
> !                 ;; Take care of preserving the match-data because this
> !                 ;; function is called when updating the header line.
> !                 (save-match-data
> !                   (string-match "[^ ]" mode-name)))

Any reason why you don't use simpler a test like (zerop (length mode-name))
or (equal mode-name ""), or even just check for mode-name being non-nil?

Are there cases where mode-names are made of nothing but spaces?
Is the empty string ever used for the mode-name?


        Stefan




reply via email to

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