Skip to content

Commit

Permalink
Fix a compatibility issue with Emacs 24. Avoid non-ASCII code in *.el
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Väth committed Jun 28, 2012
1 parent 7ce4bb8 commit a528fd0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

mv_emacs - Packages for (X)Emacs: block support, macrorecorder, verify changes

(C) Martin V�th <martin@mvath.de>
(C) Martin Väth <martin@mvath.de>
The license of this package is the GNU Public License GPL-2.

The packages should run with all newer versions of Emacs or XEmacs.
The packages should run with all non-ancient versions of Emacs or XEmacs.

For Gentoo, there is an ebuild in the mv overlay (available by layman).

block.el (revision 1.1):
block.el (revision 1.4):

The standard Emacs treatment of the region is rather different from that
of many of the classical text editors. In many other editors a "block"
Expand Down
8 changes: 4 additions & 4 deletions block.el
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
;;; block.el --- Use Block instead of Region in Emacs
;; $Revision: 1.3 $
;; $Revision: 1.4 $

;; Copyright (C) 1994/2004/2006/2009/2010 by Martin Väth
;; Copyright (C) 1994/2004/2006/2009/2010/2012 by Martin V\"ath

;; Author: Martin Väth <martin@mvath.de>
;; Author: Martin V\"ath <martin@mvath.de>
;; Keywords: block emulation convenience

;;; Commentary:
Expand Down Expand Up @@ -268,7 +268,7 @@ the higher-level function `block-define-command'."
(block-end-char))))
(if interprogram-cut-function; Not XEmacs
(funcall interprogram-cut-function
(buffer-substring (block-start-char) (block-end-char)) nil))))
(buffer-substring (block-start-char) (block-end-char))))))

(defun block-start-new-block (&optional p)
"Deactivate block and until a new block is defined, let
Expand Down
4 changes: 2 additions & 2 deletions kbdmacro.el
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
;;; kbdmacro.el --- A keyboard macro recorder.
;; $Revision: 0.3 $

;; Copyright (C) 1994/2004 by Martin Väth
;; Copyright (C) 1994/2004 by Martin V\"ath

;; Author: Martin Väth <martin@mvath.de>
;; Author: Martin V\"ath <martin@mvath.de>
;; Keywords: macro emulation convenience

;;; Commentary:
Expand Down
4 changes: 2 additions & 2 deletions verify.el
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
;;; verify.el --- Compare current buffer with saved version
;; $Revision: 0.2 $

;; Copyright (C) 1993/2004 by Martin Väth
;; Copyright (C) 1993/2004 by Martin V\"ath

;; Author: Martin Väth <martin@mvath.de>
;; Author: Martin V\"ath <martin@mvath.de>
;; Keywords: compare verify compare-windows

;;; Commentary:
Expand Down

0 comments on commit a528fd0

Please sign in to comment.