From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: why alias man to woman doesn't work? Date: Thu, 05 Apr 2012 10:19:29 -0400 Message-ID: References: <4fcd7e17-e3a4-4b35-80ca-ad71da1df9d5@pg2g2000pbb.googlegroups.com> <80k41u4ohg.fsf@somewhere.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1333635626 32102 80.91.229.3 (5 Apr 2012 14:20:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 5 Apr 2012 14:20:26 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Apr 05 16:20:26 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SFnY0-0000uP-0k for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Apr 2012 16:20:24 +0200 Original-Received: from localhost ([::1]:38318 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFnXs-0006Ch-TJ for geh-help-gnu-emacs@m.gmane.org; Thu, 05 Apr 2012 10:20:16 -0400 Original-Path: usenet.stanford.edu!postnews.google.com!news2.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post01.iad.highwinds-media.com!newsfe13.iad.POSTED!00000000!not-for-mail Original-Newsgroups: gnu.emacs.help,comp.emacs User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) Cancel-Lock: sha1:F73k58cLoPkfJWl+cOkPL21uyuQ= Original-Lines: 15 Original-X-Complaints-To: abuse@UsenetServer.com Original-NNTP-Posting-Date: Thu, 05 Apr 2012 14:19:34 UTC X-Received-Bytes: 1187 Original-Xref: usenet.stanford.edu gnu.emacs.help:191928 comp.emacs:102384 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 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 Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:84344 Archived-At: >> (defalias 'man 'woman) >> (eval-after-load 'woman '(defalias 'man 'woman)) > Do I understand correctly that the above code will load `woman' when being > parsed, while: No. > (eval-after-load "woman" '(defalias 'man 'woman)) > would wait until woman was invoked by some other command? If you remove the first line, then M-x man will not load woman. Stefan