From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: byte compiling defalias Date: Sun, 25 Oct 2009 18:27:22 -0700 (PDT) Message-ID: <200910260127.n9Q1RMOL020706@godzilla.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1256520559 24060 80.91.229.12 (26 Oct 2009 01:29:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 26 Oct 2009 01:29:19 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 26 02:29:13 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N2EOU-0000jg-1U for ged-emacs-devel@m.gmane.org; Mon, 26 Oct 2009 02:29:10 +0100 Original-Received: from localhost ([127.0.0.1]:46985 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N2EOS-0003rg-Uq for ged-emacs-devel@m.gmane.org; Sun, 25 Oct 2009 21:29:08 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N2EON-0003qX-Tu for emacs-devel@gnu.org; Sun, 25 Oct 2009 21:29:04 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N2EOJ-0003mG-5Y for emacs-devel@gnu.org; Sun, 25 Oct 2009 21:29:03 -0400 Original-Received: from [199.232.76.173] (port=43599 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N2EOI-0003mD-Vv for emacs-devel@gnu.org; Sun, 25 Oct 2009 21:28:59 -0400 Original-Received: from colin-baker-v0.ics.uci.edu ([128.195.1.153]:59593) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N2EOI-0003Nr-1y for emacs-devel@gnu.org; Sun, 25 Oct 2009 21:28:58 -0400 Original-Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by colin-baker-v0.ics.uci.edu (8.13.8/8.13.8) with ESMTP id n9Q1RMpj002202 for ; Sun, 25 Oct 2009 18:27:22 -0700 Original-Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id n9Q1RMOL020706; Sun, 25 Oct 2009 18:27:22 -0700 (PDT) Original-Lines: 14 X-ICS-MailScanner-Information: Please send mail to helpdesk@ics.uci.edu or more information X-ICS-MailScanner-ID: n9Q1RMpj002202 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) 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:116404 Archived-At: (defalias 'read-file-name-internal (completion-table-in-turn 'completion--embedded-envvar-table 'completion--file-name-table) "Internal subroutine for `read-file-name'. Do not call this.") is byte compiled to: (byte-code "\300\301\302\303\304\"\305#\207" [defalias read-file-name-internal completion-table-in-turn completion--embedded-envvar-table completion--file-name-table "Internal subroutine for `read-file-name'. Do not call this."] 5) Shouldn't it be compiled to a defalias? That way make-docstring would have a chance to extract the doc string, so it won't end up in GC memory.