From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: jaichandra Newsgroups: gmane.emacs.help Subject: Query for modifying .emac file to support e language mode Date: Mon, 24 Oct 2005 11:31:08 +0530 Message-ID: <001201c5d860$5506dba0$c4466c6b@sisodomain.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2050578732==" X-Trace: sea.gmane.org 1130134773 3529 80.91.229.2 (24 Oct 2005 06:19:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 24 Oct 2005 06:19:33 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Oct 24 08:19:24 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ETvf3-0000zZ-43 for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Oct 2005 08:18:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ETvf0-0005Mk-S8 for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Oct 2005 02:18:19 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ETvW8-00022p-39 for help-gnu-emacs@gnu.org; Mon, 24 Oct 2005 02:09:08 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ETvUr-0001L9-PN for help-gnu-emacs@gnu.org; Mon, 24 Oct 2005 02:08:15 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ETvUk-0001ID-UR for help-gnu-emacs@gnu.org; Mon, 24 Oct 2005 02:07:43 -0400 Original-Received: from [203.254.224.24] (helo=mailout1.samsung.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ETvUk-0007Oc-2X for help-gnu-emacs@gnu.org; Mon, 24 Oct 2005 02:07:42 -0400 Original-Received: from ep_mmp2 (mailout1.samsung.com [203.254.224.24]) by mailout1.samsung.com (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0IOU00J8WP0PLF@mailout1.samsung.com> for help-gnu-emacs@gnu.org; Mon, 24 Oct 2005 15:07:37 +0900 (KST) Original-Received: from jayachandrav ([107.108.70.196]) by mmp2.samsung.com (iPlanet Messaging Server 5.2 HotFix 1.17 (built Jun 23 2003)) with ESMTPA id <0IOU007L6P0NZ7@mmp2.samsung.com> for help-gnu-emacs@gnu.org; Mon, 24 Oct 2005 15:07:37 +0900 (KST) Original-To: help-gnu-emacs@gnu.org X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-Priority: 3 X-MSMail-priority: Normal X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:30511 Archived-At: This is a multi-part message in MIME format. --===============2050578732== Content-type: multipart/alternative; boundary="Boundary_(ID_sw447AVdwB7UAFpiEF/37g)" This is a multi-part message in MIME format. --Boundary_(ID_sw447AVdwB7UAFpiEF/37g) Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Hello, I am user of emacs. I am working for samsung electronics co ltd India software operations. I have a problem in modifying my .emacs file to support the specman .e files. I downloaded the specman-mode.el file into my lisp directory and add the following code into my .emac file. ;;(require 'specman-mode) (autoload 'specman-mode "specman-mode" "Specman code editing mode" t) (setq auto-mode-alist (append (list (cons "\\.e\\'" 'specman-mode) (cons "\\.e3\\'" 'specman-mode) (cons "\\.load\\'" 'specman-mode) (cons "\\.ecom\\'" 'specman-mode) (cons "\\.etst\\'" 'specman-mode)) auto-mode-alist)) When ever i open the .e extention files in emacs i am getting the following error. File mode specification error: (file-error "can not open load file " "specman-mode" ) I request you to help in modifing my .emacs file to support the specman files. - thanks and regards jayachandra --Boundary_(ID_sw447AVdwB7UAFpiEF/37g) Content-type: text/html; charset=iso-8859-1 Content-transfer-encoding: 7BIT
 Hello,
               I am user of emacs. I am working for samsung electronics
    co ltd India software operations.  I have a problem in modifying my
    .emacs file to support the specman .e files. I downloaded the
    specman-mode.el file into my lisp directory and add the following
    code into my .emac  file.
 
  ;;(require 'specman-mode)
  (autoload 'specman-mode "specman-mode" "Specman code editing mode" t)
 
  (setq auto-mode-alist
    (append (list
      (cons "
\\.e\\'" 'specman-mode)
      (cons "
\\.e3\\'" 'specman-mode)
      (cons "
\\.load\\'" 'specman-mode)
      (cons "
\\.ecom\\'" 'specman-mode)
      (cons "
\\.etst\\'" 'specman-mode))
     auto-mode-alist))
 
    When ever i open the .e extention files in emacs i am getting the
    following error.
 
  File mode specification error: (file-error "can not open load file "
    "specman-mode" )
 
   I request you to help in modifing my .emacs file to support the
    specman files.
 
   - thanks and regards
     jayachandra

--Boundary_(ID_sw447AVdwB7UAFpiEF/37g)-- --===============2050578732== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Help-gnu-emacs mailing list Help-gnu-emacs@gnu.org http://lists.gnu.org/mailman/listinfo/help-gnu-emacs --===============2050578732==--