From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Benjamin Riefenstahl Newsgroups: gmane.emacs.help Subject: Re: "Smart" quotes and dashes in PSGML Date: Mon, 28 Jul 2003 18:51:36 +0200 Organization: None Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1059411458 25187 80.91.224.249 (28 Jul 2003 16:57:38 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 28 Jul 2003 16:57:38 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jul 28 18:57:34 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19hBJW-0006Xq-00 for ; Mon, 28 Jul 2003 18:57:34 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19hBHT-0002U3-B6 for geh-help-gnu-emacs@m.gmane.org; Mon, 28 Jul 2003 12:55:27 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!cyclone.bc.net!tdsnet-transit!newspeer.tds.net!sn-xit-02!sn-xit-06!sn-post-01!supernews.com!news.supernews.com!seneca.benny.turtle-trading.net!nobody Original-Newsgroups: comp.emacs,gnu.emacs.help User-Agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:AI301OPEejr4X44H7StAOF8Kk5s= Original-X-Complaints-To: abuse@supernews.com Original-Lines: 15 Original-Xref: shelby.stanford.edu comp.emacs:80525 gnu.emacs.help:115496 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11415 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11415 Hi Florian, Florian von Savigny writes: > Incidentally, it's a pity something like the following doesn't work: > > (define-key sgml-mode-map [?ä] '(lambda (insert "\ä\;"))) That would be (define-key sgml-mode-map [?ä] (lambda () (interactive) (insert "\ä\;"))) benny