all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: andrew.maguire@ps.ge.com
Subject: RE: Emacs and Perl syntax compile
Date: Thu, 7 Aug 2003 09:42:21 -0400	[thread overview]
Message-ID: <6192367D59F8904CA553579EF41FEEA00184F4E3@ukcbgx01psge.geips.ge.com> (raw)

I do this to set up C-c C-c to do the compile:

;;Compilation mode for perl files
(require 'compile)
(add-to-list 'compilation-error-regexp-alist '(".* \\([-a-zA-Z._/]+\\) line
\\([0-9]+\\)." 1 2))
(defun perl-compile (&optional prefix)
  "Compile perl file"
  (interactive "P")
  (let* ((include-path (if (eq window-system 'w32) "-I%SP%" "-I$SP")) 
	 (compile-command (concat "perl "include-path " -cw "
(buffer-file-name)))
	 (compilation-read-command prefix))
    (call-interactively 'compile)))
(require 'perl-mode)
(require 'cperl-mode)
(define-key perl-mode-map "\C-c\C-c" 'perl-compile)
(define-key cperl-mode-map "\C-c\C-c" 'perl-compile)


> -----Original Message-----
> From: Harter, Douglas [mailto:dharter@state.pa.us]
> Sent: 01 August 2003 13:17
> To: Help Emacs (E-mail)
> Subject: Emacs and Perl syntax compile
> 
> 
> I am creating a good many Perl scripts on a Unix using emacs. 
> 
> Can someone tell me what I need in my .emacs to do Perl 
> syntax compiles from
> emacs and allow compilation mode to handle the errors?
> 
> 
> 
> .
> 
> 
> .
> 
> 
> _______________________________________________
> Help-gnu-emacs mailing list
> Help-gnu-emacs@gnu.org
> http://mail.gnu.org/mailman/listinfo/help-gnu-emacs
> 

             reply	other threads:[~2003-08-07 13:42 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-08-07 13:42 andrew.maguire [this message]
     [not found] <mailman.186.1060263856.29551.help-gnu-emacs@gnu.org>
2003-08-12 16:37 ` Emacs and Perl syntax compile Kevin Rodgers
2003-08-12 16:58   ` Stefan Monnier
     [not found] <mailman.837.1059744293.8231.help-gnu-emacs@gnu.org>
2003-08-01 20:42 ` Kai Großjohann
2003-08-21 12:57   ` Janusz S. Bień
  -- strict thread matches above, loose matches on Subject: below --
2003-08-01 12:17 Harter, Douglas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6192367D59F8904CA553579EF41FEEA00184F4E3@ukcbgx01psge.geips.ge.com \
    --to=andrew.maguire@ps.ge.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.