From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Special treatment of `term-setup-hook' Date: Tue, 24 Oct 2006 11:02:42 +0200 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1161681425 911 80.91.229.2 (24 Oct 2006 09:17:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 24 Oct 2006 09:17:05 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 24 11:17:03 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GcIP5-0000KV-QX for ged-emacs-devel@m.gmane.org; Tue, 24 Oct 2006 11:17:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GcIP4-0000hN-Mi for ged-emacs-devel@m.gmane.org; Tue, 24 Oct 2006 05:16:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GcIBO-0004bb-Hh for emacs-devel@gnu.org; Tue, 24 Oct 2006 05:02:50 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GcIBJ-0004an-Uj for emacs-devel@gnu.org; Tue, 24 Oct 2006 05:02:47 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GcIBI-0004aX-9a for emacs-devel@gnu.org; Tue, 24 Oct 2006 05:02:44 -0400 Original-Received: from [64.233.182.187] (helo=nf-out-0910.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GcIBH-0005dh-Ka for emacs-devel@gnu.org; Tue, 24 Oct 2006 05:02:43 -0400 Original-Received: by nf-out-0910.google.com with SMTP id q29so156654nfc for ; Tue, 24 Oct 2006 02:02:42 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=O2VsVkygjVsWxUakbS4DzLo7W4cXRJWBC948HZ7zMAEVQTZhqj7CkUw2kWmdU4SlSBahvu6xUSfHJHCzNKlQI2eDGHgqEmYYh51OugWVxoukd8chrV/kO9S8x9zFH+3gP6RbiIMzxB+5L1ICVTmWVyg+Y4hfZu2cOaH4Uhzxxy4= Original-Received: by 10.82.129.5 with SMTP id b5mr1639931bud; Tue, 24 Oct 2006 02:02:42 -0700 (PDT) Original-Received: by 10.82.136.11 with HTTP; Tue, 24 Oct 2006 02:02:42 -0700 (PDT) Original-To: "Emacs Devel" Content-Disposition: inline X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:61100 Archived-At: Twice in startup.el there's this code: (run-hooks 'emacs-startup-hook) (and term-setup-hook (run-hooks 'term-setup-hook)) What is so special in `term-setup-hook' that precludes simply doing (run-hooks 'emacs-startup-hook) (run-hooks 'term-setup-hook) ? /L/e/k/t/u