From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier" Newsgroups: gmane.emacs.devel Subject: Re: utf-translate-cjk only settable via Customize Date: Mon, 24 Mar 2003 10:30:37 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200303241530.h2OFUcCp011111@rum.cs.yale.edu> References: <84zno3b7jy.fsf@lucy.is.informatik.uni-duisburg.de> <200303112004.h2BK4xwG012758@rum.cs.yale.edu> <84of4aw0hw.fsf@lucy.is.informatik.uni-duisburg.de> <200303222138.h2MLcjrx032294@rum.cs.yale.edu> <84k7eqqruz.fsf@lucy.is.informatik.uni-duisburg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1048520040 5129 80.91.224.249 (24 Mar 2003 15:34:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 24 Mar 2003 15:34:00 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Mar 24 16:33:54 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18xTxS-0001KF-00 for ; Mon, 24 Mar 2003 16:33:54 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18xTxz-0001Jr-00 for ; Mon, 24 Mar 2003 16:34:27 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18xTwc-0002tk-02 for emacs-devel@quimby.gnus.org; Mon, 24 Mar 2003 10:33:02 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18xTvN-00027u-00 for emacs-devel@gnu.org; Mon, 24 Mar 2003 10:31:45 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18xTus-0001Bt-00 for emacs-devel@gnu.org; Mon, 24 Mar 2003 10:31:15 -0500 Original-Received: from rum.cs.yale.edu ([128.36.229.169]) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.10.13) id 18xTuK-0000NJ-00 for emacs-devel@gnu.org; Mon, 24 Mar 2003 10:30:40 -0500 Original-Received: from rum.cs.yale.edu (localhost [127.0.0.1]) by rum.cs.yale.edu (8.12.8/8.12.8) with ESMTP id h2OFUcPe011113; Mon, 24 Mar 2003 10:30:38 -0500 Original-Received: (from monnier@localhost) by rum.cs.yale.edu (8.12.8/8.12.8/Submit) id h2OFUcCp011111; Mon, 24 Mar 2003 10:30:38 -0500 X-Mailer: exmh version 2.4 06/23/2000 with nmh-1.0.4 Original-To: kai.grossjohann@uni-duisburg.de (Kai =?iso-8859-1?q?Gro=DFjohann?=) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:12567 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:12567 > I was confused by the following bit of code in define-minor-mode: > > ;; Check keys. > (while (keywordp (car body)) > (case (pop body) > (:init-value (setq init-value (pop body))) > (:lighter (setq lighter (pop body))) > (:global (setq globalp (pop body))) > (:extra-args (setq extra-args (pop body))) > (:group (setq group (nconc group (list :group (pop body))))) > (:require (setq require (pop body))) > (t (pop body)))) > > It seemed to me that the `t' case just throws away the keyword and its arg. That's the RC code. The trunk code is different. Stefan