emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/master.el


From: Lute Kamstra
Subject: [Emacs-diffs] Changes to emacs/lisp/master.el
Date: Mon, 04 Apr 2005 05:02:15 -0400

Index: emacs/lisp/master.el
diff -c emacs/lisp/master.el:1.6 emacs/lisp/master.el:1.7
*** emacs/lisp/master.el:1.6    Mon Sep  1 15:45:13 2003
--- emacs/lisp/master.el        Mon Apr  4 09:02:15 2005
***************
*** 1,6 ****
  ;;; master.el --- make a buffer the master over another buffer
  
! ;; Copyright (C) 1999, 2000, 2001  Alexander Schroeder
  
  ;; Author: Alex Schroeder <address@hidden>
  ;; Maintainer: Alex Schroeder <address@hidden>
--- 1,6 ----
  ;;; master.el --- make a buffer the master over another buffer
  
! ;; Copyright (C) 1999, 2000, 2001, 2005  Alexander Schroeder
  
  ;; Author: Alex Schroeder <address@hidden>
  ;; Maintainer: Alex Schroeder <address@hidden>
***************
*** 55,61 ****
  
  ;;; Code:
  
! (require 'easy-mmode)
  
  ;; Variables that don't need initialization.
  
--- 55,64 ----
  
  ;;; Code:
  
! (defgroup master nil
!   "Support for master/slave relationships between buffers."
!   :version "22.1"
!   :group 'convenience)
  
  ;; Variables that don't need initialization.
  
***************
*** 83,98 ****
  The slave buffer is stored in the buffer-local variable `master-of'.
  You can set this variable using `master-set-slave'.  You can show
  yourself the value of `master-of' by calling `master-show-slave'."
!  ;; The initial value.
!  nil
!  ;; The indicator for the mode line.
!  nil
!  ;; The minor mode bindings.
!  '(("\C-c\C-n" . master-says-scroll-up)
!    ("\C-c\C-p" . master-says-scroll-down)
!    ("\C-c<" . master-says-beginning-of-buffer)
!    ("\C-c>" . master-says-end-of-buffer)
!    ("\C-c\C-l" . master-says-recenter)))
  
  ;; Initialize Master mode by setting a slave buffer.
  
--- 86,98 ----
  The slave buffer is stored in the buffer-local variable `master-of'.
  You can set this variable using `master-set-slave'.  You can show
  yourself the value of `master-of' by calling `master-show-slave'."
!   :group 'master
!   :keymap
!   '(("\C-c\C-n" . master-says-scroll-up)
!     ("\C-c\C-p" . master-says-scroll-down)
!     ("\C-c<" . master-says-beginning-of-buffer)
!     ("\C-c>" . master-says-end-of-buffer)
!     ("\C-c\C-l" . master-says-recenter)))
  
  ;; Initialize Master mode by setting a slave buffer.
  




reply via email to

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