wanderlust / semi

SEMI Development Repository for Wanderlust
http://emacswiki.org/emacs/WanderLust
40 stars 16 forks source link

use ?\s instead of ?(whitespace) #20

Closed conao3 closed 4 years ago

conao3 commented 4 years ago

? and ?\ and ?\s are return same value. ?\s is easier to read and understand.

(list ?  ?\  ?\s)
;;=> (32 32 32)

ref: https://www.gnu.org/software/emacs/manual/html_mono/elisp.html#Basic-Char-Syntax

ikazuhiro commented 4 years ago

Emacs 21 and earlier don't support that syntax. Please send PR to lexical-binding branch.

conao3 commented 4 years ago

OK, I changed the base branch.

conao3 commented 4 years ago

After resolve conflict, my change is gone.