From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Davin Pearson Newsgroups: gmane.emacs.help Subject: Re: Crappyness of Emacs Version 24.5.1 defadvice Date: Wed, 29 Jun 2016 00:05:05 -0700 (PDT) Message-ID: <60799924-5dea-459a-bf49-09c3dd604a62@googlegroups.com> References: <51b6ce57-51f6-43b9-9ad0-20540a877dca@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1467184243 13746 80.91.229.3 (29 Jun 2016 07:10:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 29 Jun 2016 07:10:43 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jun 29 09:10:43 2016 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 1bI9dv-0007gI-KQ for geh-help-gnu-emacs@m.gmane.org; Wed, 29 Jun 2016 09:10:40 +0200 Original-Received: from localhost ([::1]:41628 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bI9du-0000nu-Rb for geh-help-gnu-emacs@m.gmane.org; Wed, 29 Jun 2016 03:10:38 -0400 X-Received: by 10.13.212.203 with SMTP id w194mr6055721ywd.28.1467183906235; Wed, 29 Jun 2016 00:05:06 -0700 (PDT) X-Received: by 10.36.64.133 with SMTP id n127mr575565ita.4.1467183906203; Wed, 29 Jun 2016 00:05:06 -0700 (PDT) Original-Path: usenet.stanford.edu!r1no6052388ige.0!news-out.google.com!o189ni9689ith.0!nntp.google.com!jk6no6030898igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=122.56.204.11; posting-account=SVVH0AoAAABplEQzMkIR3gU7a0gK8IuF Original-NNTP-Posting-Host: 122.56.204.11 User-Agent: G2/1.0 Injection-Date: Wed, 29 Jun 2016 07:05:06 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:218343 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.help:110652 Archived-At: On Wednesday, June 29, 2016 at 1:56:33 PM UTC+12, Michael Heerdegen wrote: > Davin Pearson writes: > > > I tried the following code but it doesn't work. > > > > (advice-add 'describe-mode > > :around > > #'(lambda () (delete-other-windows) ad-do-it) > > ) Why the # character before the lambda form? Does it do the same thing as (function (lambda () ...))