From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Leo Liu Newsgroups: gmane.emacs.help Subject: Re: Need help about octave integration on emacs 24.3 Date: Tue, 25 Nov 2014 23:26:09 +0800 Message-ID: <87lhmzl2su.fsf@gmail.com> References: <87sih8o7kx.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1416929227 9075 80.91.229.3 (25 Nov 2014 15:27:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Nov 2014 15:27:07 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 25 16:27:00 2014 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 1XtI14-0001gX-Uw for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 16:26:59 +0100 Original-Received: from localhost ([::1]:58055 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtI14-0006Vz-Ep for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Nov 2014 10:26:58 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50407) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtI0l-0006Ts-3I for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 10:26:46 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtI0b-0006Pw-CI for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 10:26:39 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:41216) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtI0b-0006Pm-5h for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 10:26:29 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XtI0a-0001HM-E7 for help-gnu-emacs@gnu.org; Tue, 25 Nov 2014 16:26:28 +0100 Original-Received: from 221.222.149.119 ([221.222.149.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Nov 2014 16:26:28 +0100 Original-Received: from sdl.web by 221.222.149.119 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Nov 2014 16:26:28 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 9 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 221.222.149.119 Face: iVBORw0KGgoAAAANSUhEUgAAACkAAAApAQAAAACAGz1bAAABKElEQVQYlWNg3NIt5FDPUPt7 4+X79Qyucz5/ugik+L2PBgKpyphaIK921q23QDnG0NBQoMr/vaWl9f8ZLL78uPv5PwN7RETfzXoG jhmFz27XM0RXmpuY/WfY+fv0Mc56BvFybfXA/wwL5t/wF61n2PU59axXPcOVzbmSW/8zrNt1benC /ww70hqUU/4zKCtrT9jwn8FhwynbufUMendE2aLqGRpdX9al1zM8eh17lKeeQcTMrdD5P8P3j/YT Q/8zXHSb7p1Qz/C4OM2JuZ7hgtI7K6AjqsMnf8j4z8C6xG1tw3+GqpqvsVn/GTzmpD9j/8/wP/oZ S/l/Bka+QO/g/wy15ueeFQL9N1O8mPU/g+umV3t1gdT0/1bTgHLqYVeXAlWKpMWt+w8Az82C9nHf X0cAAAAASUVORK5CYII= User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (CentOS Linux 7 (Core)) Cancel-Lock: sha1:oHzqrzSQedWeG2Hl5bk1vvAX/O4= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 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:101166 Archived-At: On 2014-11-25 09:12 -0500, Stefan Monnier wrote: > It is: there's an autoload of the `octave-mode' function which fetches > the function from `octave-mod'. So you either have to overwrite it with > your own autoload, or you can simply (load "octave") which will > overwrite the autoload with the actual function. Indeed. In other words put (require 'octave) in your init file. Leo