emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el,v


From: Dan Nicolaescu
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el,v
Date: Thu, 31 Jul 2008 05:34:11 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   08/07/31 05:33:56

Index: lisp/emacs-lisp/bytecomp.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/emacs-lisp/bytecomp.el,v
retrieving revision 2.241
retrieving revision 2.242
diff -u -b -r2.241 -r2.242
--- lisp/emacs-lisp/bytecomp.el 13 Jun 2008 04:16:23 -0000      2.241
+++ lisp/emacs-lisp/bytecomp.el 31 Jul 2008 05:33:45 -0000      2.242
@@ -197,9 +197,7 @@
   "Emacs Lisp byte-compiler."
   :group 'lisp)
 
-(defcustom emacs-lisp-file-regexp (if (eq system-type 'vax-vms)
-                                     "\\.EL\\(;[0-9]+\\)?$"
-                                   "\\.el$")
+(defcustom emacs-lisp-file-regexp "\\.el$"
   "*Regexp which matches Emacs Lisp source files.
 You may want to redefine the function `byte-compile-dest-file'
 if you change this variable."
@@ -225,9 +223,7 @@
 with the extension `.el'), add `c' to it; otherwise add `.elc'."
       (setq filename (byte-compiler-base-file-name filename))
       (setq filename (file-name-sans-versions filename))
-      (cond ((eq system-type 'vax-vms)
-            (concat (substring filename 0 (string-match ";" filename)) "c"))
-           ((string-match emacs-lisp-file-regexp filename)
+      (cond ((string-match emacs-lisp-file-regexp filename)
             (concat (substring filename 0 (match-beginning 0)) ".elc"))
            (t (concat filename ".elc")))))
 
@@ -1788,7 +1784,6 @@
        (with-current-buffer output-buffer
          (goto-char (point-max))
          (insert "\n")                 ; aaah, unix.
-         (let ((vms-stmlf-recfm t))
            (if (file-writable-p target-file)
                ;; We must disable any code conversion here.
                (let ((coding-system-for-write 'no-conversion))
@@ -1808,7 +1803,7 @@
                            (if (file-exists-p target-file)
                                "cannot overwrite file"
                              "directory not writable or nonexistent")
-                           target-file))))
+                           target-file)))
          (kill-buffer (current-buffer)))
        (if (and byte-compile-generate-call-tree
                 (or (eq t byte-compile-generate-call-tree)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]