From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: kai.grossjohann@uni-duisburg.de (Kai =?iso-8859-1?q?Gro=DFjohann?=) Newsgroups: gmane.emacs.devel Subject: Janitorial issues: Man-getpage-in-background Date: Wed, 05 Mar 2003 11:54:22 +0100 Organization: University of Duisburg, Germany Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <84of4qdqxt.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 1046861782 1043 80.91.224.249 (5 Mar 2003 10:56:22 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 5 Mar 2003 10:56:22 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Wed Mar 05 11:56:19 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 18qWZP-0000Gc-00 for ; Wed, 05 Mar 2003 11:56:19 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18qWtC-0004gL-00 for ; Wed, 05 Mar 2003 12:16:46 +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 18qWZA-0007fk-03 for emacs-devel@quimby.gnus.org; Wed, 05 Mar 2003 05:56:04 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18qWYq-0007Xo-00 for emacs-devel@gnu.org; Wed, 05 Mar 2003 05:55:44 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18qWYl-0007Oz-00 for emacs-devel@gnu.org; Wed, 05 Mar 2003 05:55:39 -0500 Original-Received: from main.gmane.org ([80.91.224.249]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18qWYf-0007JW-00 for emacs-devel@gnu.org; Wed, 05 Mar 2003 05:55:33 -0500 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18qWXS-000098-00 for ; Wed, 05 Mar 2003 11:54:18 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Received: from news by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 18qWX8-000089-00 for ; Wed, 05 Mar 2003 11:53:58 +0100 Original-Lines: 15 Original-X-Complaints-To: usenet@main.gmane.org User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:7WjC50HnFAV843MVFauNzCTDVeA= 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:12102 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:12102 The function Man-getpage-in-background uses two different ways to set environment variables: (a) (let ((process-environment (copy-sequence process-environment))) (setenv "FOO" "bar") ...) (b) (let ((process-environment (cons "FOO=bar" process-environment))) ...) It looks really strange to see them both in the same function... Okay to unify? (I'd choose (a) unless there are objections.) -- A preposition is not a good thing to end a sentence with.