emacs-devel
[Top][All Lists]
Advanced

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

Re: Insert character pairs


From: Andreas Schwab
Subject: Re: Insert character pairs
Date: Thu, 29 Apr 2004 12:12:21 +0200
User-agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3.50 (gnu/linux)

Juri Linkov <address@hidden> writes:

>    (and parens-require-spaces
>         (not (bobp))
> -       (memq (char-syntax (preceding-char)) '(?w ?_ ?\) ))
> +       (memq (char-syntax (preceding-char)) (list ?w ?_ close))

This won't work, the list contains syntax codes, not characters.

>      (and parens-require-spaces
>        (not (eobp))
> -      (memq (char-syntax (following-char)) '(?w ?_ ?\( ))
> -      (insert " "))))
> +        (memq (char-syntax (following-char)) (list ?w ?_ open))
> +        (insert " ")))))

Same here.

Andreas.

-- 
Andreas Schwab, SuSE Labs, address@hidden
SuSE Linux AG, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."




reply via email to

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