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

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

Re: What's a better regexp for 'sentence-end' variable??


From: Kai Großjohann
Subject: Re: What's a better regexp for 'sentence-end' variable??
Date: Wed, 19 Feb 2003 17:26:48 +0100
User-agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.3.50

David Kastrup <dak@gnu.org> writes:

> kai.grossjohann@uni-duisburg.de (Kai Großjohann) writes:
>
>> Why is it desirable to ensure that?  I know it's cleaner in a way, but
>> on the other hand it makes the code very obfuscated, so why bother...
>
> In short: your keymaps grow ever longer.

It seems the documentation is wrong:

*** Welcome to IELM ***  Type (describe-mode) for help.
ELISP> (setq k (make-sparse-keymap))
(keymap)

ELISP> (define-key k "a" 'foo)
foo
ELISP> k
(keymap
 (97 . foo))

ELISP> (define-key k "a" 'foo)
foo
ELISP> k
(keymap
 (97 . foo))

ELISP> 

So I guess a doc fix is needed.
-- 
A turnip curses Elvis


reply via email to

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