From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?iso-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: Symbol's function definition is void: latex-indent-line [Mac OS X] Date: Fri, 3 Aug 2012 18:24:31 +0200 Message-ID: <2E44DDD7-9DE2-4831-8D9D-5200CA9AE38A@swipnet.se> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Apple Message framework v1278) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1344011083 12826 80.91.229.3 (3 Aug 2012 16:24:43 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 3 Aug 2012 16:24:43 +0000 (UTC) Cc: Andreas Schwab , Emacs devel list To: Angelo Graziosi Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Aug 03 18:24:41 2012 Return-path: Envelope-to: ged-emacs-devel@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 1SxKg3-0002eO-R6 for ged-emacs-devel@m.gmane.org; Fri, 03 Aug 2012 18:24:39 +0200 Original-Received: from localhost ([::1]:58123 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SxKg3-0002Rb-4H for ged-emacs-devel@m.gmane.org; Fri, 03 Aug 2012 12:24:39 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:47490) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SxKg0-0002QF-NT for emacs-devel@gnu.org; Fri, 03 Aug 2012 12:24:37 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SxKfz-0004iV-M4 for emacs-devel@gnu.org; Fri, 03 Aug 2012 12:24:36 -0400 Original-Received: from mailout.melmac.se ([62.20.26.67]:52294) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SxKfz-0004hx-Ei for emacs-devel@gnu.org; Fri, 03 Aug 2012 12:24:35 -0400 Original-Received: from mail01.melmac.se (mail01.melmac.se [62.20.26.80]) by mailout.melmac.se (Postfix) with ESMTP id D11199E51 for ; Fri, 3 Aug 2012 18:24:30 +0200 (CEST) Original-Received: (qmail 21872 invoked by uid 89); 3 Aug 2012 16:24:19 -0000 Original-Received: from h-46-59-42-18.na.cust.bahnhof.se (HELO coolsville.localdomain) (boel.djarv@bdtv.se@46.59.42.18) by mail01.melmac.se with ESMTPA; 3 Aug 2012 16:24:19 -0000 Original-Received: from [172.20.199.13] (zeplin [172.20.199.13]) by coolsville.localdomain (Postfix) with ESMTPSA id 41C017FA06C; Fri, 3 Aug 2012 18:24:30 +0200 (CEST) In-Reply-To: X-Mailer: Apple Mail (2.1278) X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-Received-From: 62.20.26.67 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:152144 Archived-At: Hello. 3 aug 2012 kl. 15:57 skrev Angelo Graziosi: >=20 > You may try to reproduce with: >=20 > cp init.el-test ~/.emacs.d/init.el > emacs24[|| trunk] test_subfig.tex >=20 > go to the end of a line, "\section{Introduction}" for example. >=20 > Press ENTER to insert a blank line: it does not work for me, it prints >=20 > Symbol's function definition is void: latex-indent-line >=20 > in the minibuffer.. In your init.el you have: (defun latex-return( ) (interactive) (latex-indent-line) = (newline-and-indent)) and as stated below, latex-indent-line does not exist, but latex-indent = do. So no wonder you get Symbol's function definition is void: = latex-indent-line. What did you expect? Jan D. >=20 > I have tested it with Emacs-app 24.1 on Mac OS X (via MacPorts); with = rev. 109400 on Cygwin, and a week old trunk on GNU/Linux Fedora 16. >=20 > Ciao, > Angelo. >=20 > On Fri, 3 Aug 2012, Andreas Schwab wrote: >=20 >> Angelo Graziosi writes: >>=20 >>> latex-return: Symbol's function definition is void: = latex-indent-line >>=20 >> There was never a function latex-indent-line in Emacs (tex-mode = defines >> latex-indent). It must have been defined by some add-on package. >>=20 >> Andreas.