help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: [solved] Re: How to format paragraph and not to lose spaces between


From: Emanuel Berg
Subject: Re: [solved] Re: How to format paragraph and not to lose spaces between 2 characters?
Date: Wed, 06 Oct 2021 16:35:09 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

Jean Louis wrote:

>   (let* ((start (line-beginning-position))

"beg"

> (when (and (not (string-match rcd-check-in line))
>            (not (string-match rcd-check-out line)))

(not A) and (not B) = not (A or B) [1] so

  (unless (or (string-...
              (string-...

And 5 warnings from the byte-compiler. You've had them many
times ...

Also, you have a good reason you want this?

[1] https://en.wikipedia.org/wiki/De_Morgan%27s_laws

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

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