changeset 26523:c06aa85fd1ad

Use modern backquote syntax. Minor comment update.
author Gerd Moellmann <gerd@gnu.org>
date Sun, 21 Nov 1999 16:45:47 +0000
parents bfce4a7deb1c
children a39742d2964d
files lisp/follow.el
diffstat 1 files changed, 13 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/follow.el	Sun Nov 21 15:08:37 1999 +0000
+++ b/lisp/follow.el	Sun Nov 21 16:45:47 1999 +0000
@@ -1,13 +1,12 @@
 ;;; follow.el --- Minor mode, Synchronize windows showing the same buffer.
 
-;; Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+;; Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
 
-;; Author: Anders Lindgren <andersl@csd.uu.se>
-;; Maintainer: Anders Lindgren <andersl@csd.uu.se>
-;; Created: 25 May 1995
-;; Version: 1.7
+;; Author: Anders Lindgren <andersl@andersl.com>
+;; Maintainer: Anders Lindgren <andersl@andersl.com>
+;; Created: 1995-05-25
 ;; Keywords: display, window, minor-mode, convenience
-;; Date: 4 Jun 1997
+;; Last Changed: 1999-11-17
 
 ;; This file is part of GNU Emacs.
 
@@ -52,12 +51,6 @@
 ;; and being able to use 144 lines instead of the normal 72... (your
 ;; mileage may vary).
 
-
-;; The latest version, and a demonstration, are avaiable at:
-;;
-;;	http://www.csd.uu.se/~andersl/emacs.shtml
-
-
 ;; To test this package, make sure `follow' is loaded, or will be
 ;; autoloaded when activated (see below). Then do the following:
 ;;
@@ -392,12 +385,12 @@
 (eval-when-compile (require 'reporter))
 
 (defun follow-submit-feedback ()
-  "Submit feedback on Follow mode to the author: andersl@csd.uu.se"
+  "Submit feedback on Follow mode to the author: andersl@andersl.com"
   (interactive)
   (require 'reporter)
   (and (y-or-n-p "Do you really want to submit a report on Follow mode? ")
        (reporter-submit-bug-report
-	"Anders Lindgren <andersl@csd.uu.se>"
+	"Anders Lindgren <andersl@andersl.com>"
 	"follow.el"
 	'(post-command-hook
 	  post-command-idle-hook
@@ -1775,12 +1768,12 @@
 		     scroll-bar-set-window-start)))
 	 (while cmds
 	   (eval
-	    (` (defadvice (, (intern (symbol-name (car cmds))))
+	    `(defadvice ,(intern (symbol-name (car cmds)))
 		 (after
-		  (, (intern (concat "follow-" (symbol-name (car cmds)))))
+		  ,(intern (concat "follow-" (symbol-name (car cmds))))
 		  activate)
 		 "Adviced by Follow Mode."
-		 (follow-redraw-after-event (ad-get-arg 0)))))
+		 (follow-redraw-after-event (ad-get-arg 0))))
 	   (setq cmds (cdr cmds))))
 
 
@@ -1825,12 +1818,12 @@
 
 	(while cmds
 	  (eval
-	   (` (defadvice (, (intern (symbol-name (car cmds))))
+	   `(defadvice ,(intern (symbol-name (car cmds)))
 		(after
-		 (, (intern (concat "follow-" (symbol-name (car cmds)))))
+		 ,(intern (concat "follow-" (symbol-name (car cmds))))
 		 activate)
 		"Adviced by `follow-mode'."
-		(follow-xemacs-scrollbar-support (ad-get-arg 0)))))
+		(follow-xemacs-scrollbar-support (ad-get-arg 0))))
 	  (setq cmds (cdr cmds))))