emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/progmodes/cperl-mode.el,v


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/cperl-mode.el,v
Date: Mon, 27 Aug 2007 04:00:23 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Miles Bader <miles>     07/08/27 04:00:20

Index: lisp/progmodes/cperl-mode.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/progmodes/cperl-mode.el,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -b -r1.94 -r1.95
--- lisp/progmodes/cperl-mode.el        25 Aug 2007 20:14:54 -0000      1.94
+++ lisp/progmodes/cperl-mode.el        27 Aug 2007 04:00:06 -0000      1.95
@@ -96,7 +96,7 @@
            nil))
       (or (fboundp 'custom-declare-variable)
          (defmacro defcustom (name val doc &rest arr)
-           (` (defvar (, name) (, val) (, doc)))))
+           `(defvar ,name ,val ,doc)))
       (or (and (fboundp 'custom-declare-variable)
               (string< "19.31" emacs-version)) ;  Checked with 19.30: defface 
does not work
          (defmacro defface (&rest arr)
@@ -104,52 +104,52 @@
       ;; Avoid warning (tmp definitions)
       (or (fboundp 'x-color-defined-p)
          (defmacro x-color-defined-p (col)
-           (cond ((fboundp 'color-defined-p) (` (color-defined-p (, col))))
+           (cond ((fboundp 'color-defined-p) `(color-defined-p ,col))
                  ;; XEmacs >= 19.12
-                 ((fboundp 'valid-color-name-p) (` (valid-color-name-p (, 
col))))
+                 ((fboundp 'valid-color-name-p) `(valid-color-name-p ,col))
                  ;; XEmacs 19.11
-                 ((fboundp 'x-valid-color-name-p) (` (x-valid-color-name-p (, 
col))))
+                 ((fboundp 'x-valid-color-name-p) `(x-valid-color-name-p ,col))
                  (t '(error "Cannot implement color-defined-p")))))
       (defmacro cperl-is-face (arg)    ; Takes quoted arg
        (cond ((fboundp 'find-face)
-              (` (find-face (, arg))))
+              `(find-face ,arg))
              (;;(and (fboundp 'face-list)
               ;;       (face-list))
               (fboundp 'face-list)
-              (` (member (, arg) (and (fboundp 'face-list)
-                                      (face-list)))))
+              `(member ,arg (and (fboundp 'face-list)
+                                  (face-list))))
              (t
-              (` (boundp (, arg))))))
+              `(boundp ,arg))))
       (defmacro cperl-make-face (arg descr) ; Takes unquoted arg
        (cond ((fboundp 'make-face)
-              (` (make-face (quote (, arg)))))
+              `(make-face (quote ,arg)))
              (t
-              (` (defvar (, arg) (quote (, arg)) (, descr))))))
+              `(defvar ,arg (quote ,arg) ,descr))))
       (defmacro cperl-force-face (arg descr) ; Takes unquoted arg
-       (` (progn
-            (or (cperl-is-face (quote (, arg)))
-                (cperl-make-face (, arg) (, descr)))
-            (or (boundp (quote (, arg))) ; We use unquoted variants too
-                (defvar (, arg) (quote (, arg)) (, descr))))))
+       `(progn
+            (or (cperl-is-face (quote ,arg))
+                (cperl-make-face ,arg ,descr))
+            (or (boundp (quote ,arg)) ; We use unquoted variants too
+                (defvar ,arg (quote ,arg) ,descr))))
       (if cperl-xemacs-p
          (defmacro cperl-etags-snarf-tag (file line)
-           (` (progn
+           `(progn
                 (beginning-of-line 2)
-                (list (, file) (, line)))))
+               (list ,file ,line)))
        (defmacro cperl-etags-snarf-tag (file line)
-         (` (etags-snarf-tag))))
+         `(etags-snarf-tag)))
       (if cperl-xemacs-p
          (defmacro cperl-etags-goto-tag-location (elt)
-           (`;;(progn
-            ;; (switch-to-buffer (get-file-buffer (elt (, elt) 0)))
-            ;; (set-buffer (get-file-buffer (elt (, elt) 0)))
+           ;;(progn
+            ;; (switch-to-buffer (get-file-buffer (elt ,elt 0)))
+            ;; (set-buffer (get-file-buffer (elt ,elt 0)))
             ;; Probably will not work due to some save-excursion???
             ;; Or save-file-position?
-            ;; (message "Did I get to line %s?" (elt (, elt) 1))
-            (goto-line (string-to-int (elt (, elt) 1)))))
+            ;; (message "Did I get to line %s?" (elt ,elt 1))
+            `(goto-line (string-to-int (elt ,elt 1))))
        ;;)
        (defmacro cperl-etags-goto-tag-location (elt)
-         (` (etags-goto-tag-location (, elt))))))
+         `(etags-goto-tag-location ,elt))))
 
 (defconst cperl-xemacs-p (string-match "XEmacs\\|Lucid" emacs-version))
 
@@ -1794,8 +1794,8 @@
   ;; This one is obsolete...
   (make-local-variable 'vc-header-alist)
   (set 'vc-header-alist (or cperl-vc-header-alist ; Avoid warning
-                           (` ((SCCS (, (car cperl-vc-sccs-header)))
-                                    (RCS (, (car cperl-vc-rcs-header)))))))
+                           `((SCCS ,(car cperl-vc-sccs-header))
+                              (RCS ,(car cperl-vc-rcs-header)))))
   (cond ((boundp 'compilation-error-regexp-alist-alist);; xemacs 20.x
         (make-local-variable 'compilation-error-regexp-alist-alist)
         (set 'compilation-error-regexp-alist-alist
@@ -5957,25 +5957,25 @@
                        nil t)))        ; local variables, multiple
                  (font-lock-anchored
                   ;; 1=my_etc, 2=white? 3=(+white? 4=white? 5=var
-                  (` ((, (concat "\\<\\(my\\|local\\|our\\)"
+                  `(,(concat "\\<\\(my\\|local\\|our\\)"
                                  cperl-maybe-white-and-comment-rex
                                  "\\(("
                                     cperl-maybe-white-and-comment-rex
-                                 
"\\)?\\(address@hidden([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)"))
-                      (5 (, (if cperl-font-lock-multiline
+                                 
"\\)?\\(address@hidden([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
+                      (5 ,(if cperl-font-lock-multiline
                                 'font-lock-variable-name-face
                               '(progn  (setq cperl-font-lock-multiline-start
                                              (match-beginning 0))
-                                       'font-lock-variable-name-face))))
-                      ((, (concat "\\="
+                                       'font-lock-variable-name-face)))
+                      (,(concat "\\="
                                   cperl-maybe-white-and-comment-rex
                                   ","
                                   cperl-maybe-white-and-comment-rex
-                                  
"\\(address@hidden([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)"))
+                                  
"\\(address@hidden([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
                        ;; Bug in font-lock: limit is used not only to limit 
                        ;; searches, but to set the "extend window for
                        ;; facification" property.  Thus we need to minimize.
-                       (, (if cperl-font-lock-multiline
+                       ,(if cperl-font-lock-multiline
                             '(if (match-beginning 3)
                                  (save-excursion
                                    (goto-char (match-beginning 3))
@@ -5989,8 +5989,8 @@
                                (forward-char -2)) ; disable continued expr
                             '(if (match-beginning 3)
                                  (point-max) ; No limit for continuation
-                               (forward-char -2)))) ; disable continued expr
-                       (, (if cperl-font-lock-multiline
+                               (forward-char -2))) ; disable continued expr
+                       ,(if cperl-font-lock-multiline
                               nil
                             '(progn    ; Do at end
                                ;; "my" may be already fontified (POD),
@@ -6003,8 +6003,8 @@
                                  (put-text-property
                                   (1+ cperl-font-lock-multiline-start) (point)
                                   'syntax-type 'multiline))
-                               (setq cperl-font-lock-multiline-start nil))))
-                       (3 font-lock-variable-name-face)))))
+                               (setq cperl-font-lock-multiline-start nil)))
+                       (3 font-lock-variable-name-face))))
                  (t '("^[ \t{}]*\\(my\\|local\\|our\\)[ \t]*\\(([ 
\t]*\\)?\\(address@hidden:]+\\)"
                       3 font-lock-variable-name-face)))
            '("\\<for\\(each\\)?\\([ \t]+\\(my\\|local\\|our\\)\\)?[ 
\t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*("




reply via email to

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