From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lalit Saraswat Newsgroups: gmane.emacs.help Subject: Re: Symbol's function definition is void Date: Thu, 6 Jun 2013 23:22:13 +0530 Message-ID: References: <02a6d632-78bd-4cf7-95fa-a50f14738218@default> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1370541159 32063 80.91.229.3 (6 Jun 2013 17:52:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Jun 2013 17:52:39 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Drew Adams Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jun 06 19:52:40 2013 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 1UkeMY-0006CP-KD for geh-help-gnu-emacs@m.gmane.org; Thu, 06 Jun 2013 19:52:38 +0200 Original-Received: from localhost ([::1]:41763 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkeMY-0006Hf-AU for geh-help-gnu-emacs@m.gmane.org; Thu, 06 Jun 2013 13:52:38 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkeMI-0006HR-1G for help-gnu-emacs@gnu.org; Thu, 06 Jun 2013 13:52:28 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UkeMA-00047Z-Is for help-gnu-emacs@gnu.org; Thu, 06 Jun 2013 13:52:21 -0400 Original-Received: from mail-wg0-x236.google.com ([2a00:1450:400c:c00::236]:51794) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkeMA-00045c-DJ for help-gnu-emacs@gnu.org; Thu, 06 Jun 2013 13:52:14 -0400 Original-Received: by mail-wg0-f54.google.com with SMTP id j13so2336648wgh.33 for ; Thu, 06 Jun 2013 10:52:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=ropfSA41XAiV4vDlJYAnOzSCy4ZuYx9qcnqozBrAXqk=; b=pEeeaf8LuF7owgTfinTvCYdWiq3TiVdawJ/cF6T8IdhrmzEZW6eHctEKDlJppJVD6k N7csIfr2jLjxTxNQ84bMYd5+o3d5WBJruPSmRItZp4uUnt4ZGRGACabUkX30sdWIP7lR G88zrKJpxR278+2B3urv78XBv2jmsyFps1bm/ZdHsD7bFbuuNijEpB/2s6UFV9Za+H1b KJeaebZCYPpnX8MHVxW1B8FwoReA1pUmrHv2UMTNzjD9LIcCAG+f/PqqWc0ji8CBoqQ0 aofYMd1ou2/pZXOyF7usPh71fdqnXpxxptEwycmt2F9PrPjodtMHoPmmOpJzHorixBOp Y/kw== X-Received: by 10.180.212.49 with SMTP id nh17mr10649314wic.60.1370541133511; Thu, 06 Jun 2013 10:52:13 -0700 (PDT) Original-Received: by 10.194.119.226 with HTTP; Thu, 6 Jun 2013 10:52:13 -0700 (PDT) In-Reply-To: <02a6d632-78bd-4cf7-95fa-a50f14738218@default> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c00::236 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 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:91356 Archived-At: thanks adams. due to this issue i was not able to use emacs on my laptop. few more questions on using this file. 1) i m not sure where to store this file. or how to add header2.el file path in .emacs. 2) i want to add this header in different kind of file like .c/.vhd/.v/.cpf/.upf. or in other word i want to use same header for any kind of file. what should i add in .emacs. Thanks and Regards, Lalit -------------------------------------------------------------------------------- Thanks & Regards, Lalit Saraswat 09654370077 -------------------------------------------------------------------------------- On Thu, Jun 6, 2013 at 10:21 PM, Drew Adams wrote: > > When i try to save something in emacs, i am getting following error: > > "Symbol's function definition is void: auto-update-file-header" > > > > earlier it was working fine. i tried to add default header in emacs using > > header2.el file. after that i am consistently facing this issue. > > Sorry for your trouble. If you use `auto-update-file-header' on a hook > that gets run then you also need to load the library that defines it: > header2.el. > > Put one of these in your .emacs: (require 'header2) > or (autoload 'auto-update-file-header "header2" > "Update file header if file is modified.") > > I've added this info to the file header of header2.el now. Thx. >