GNU bug report logs -
#13837
24.2; Make it possible to turn whitespace-mode only when there are no existing problems
Previous Next
Reported by: Reuben Thomas <rrt <at> sc3d.org>
Date: Wed, 27 Feb 2013 21:45:02 UTC
Severity: wishlist
Found in version 24.2
Fixed in version 25.1
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #71 received at 13837 <at> debbugs.gnu.org (full text, mbox):
> -(defun whitespace-report (&optional force report-if-bogus)
> +(defun whitespace-report (&optional force report)
I'd leave the name unchanged. Will make for a cleaner diff and the
name "report" is not convincingly better.
> +If REPORT is t, it reports only when there are any whitespace
> +problems in buffer; if it is 'never, it does not report problems.
^^^^^^
should be `never'
> +problems in buffer; if it is 'never, it does not report problems.
^^^^^^
should be `never'
> * If `indent-tabs-mode' is non-nil:
> + indentation 6. 8 or more SPACEs at beginning of line.
> * If `indent-tabs-mode' is nil:
> + indentation 6. TABS at beginning of line.
Why not
indentation 6. if `indent-tabs-mode':
8 or more SPACEs at beginning of line
else: TABS at beginning of line.
> - (when (if report-if-bogus has-bogus t)
> + (when (if (equal report t) has-bogus (null report))
For better backward compatibility, this should check for `never' and
treat any other non-nil value as t. IOW
(when (pcase report-if-bogus (`nil t) (`never nil) (_ has-bogus))
-- Stefan
This bug report was last modified 10 years and 235 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.