]> git.eshelyaron.com Git - emacs.git/commitdiff
(delimit-columns-rectangle-max): Do not double variables in the lambda-list.
authorPavel Janík <Pavel@Janik.cz>
Sat, 13 Oct 2001 08:13:34 +0000 (08:13 +0000)
committerPavel Janík <Pavel@Janik.cz>
Sat, 13 Oct 2001 08:13:34 +0000 (08:13 +0000)
(delimit-columns-rectangle-line): Do not double variables in the lambda-list.

lisp/ChangeLog
lisp/delim-col.el

index e745026f822823ef29913ed84472e0923059257f..6f6d11e7fa3f3b6d5ffece44dc61a4269dd115f6 100644 (file)
@@ -1,3 +1,15 @@
+2001-10-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
+
+       * mail/mailalias.el (mail-directory-stream): Do not double
+       variables in the lambda-list.
+
+       * play/gomoku.el (gomoku-init-display): Ditto.
+
+       * play/landmark.el (lm-init-display): Ditto.
+
+       * delim-col.el (delimit-columns-rectangle-max): Ditto.
+       (delimit-columns-rectangle-line): Ditto.
+
 2001-10-12  Stefan Monnier  <monnier@cs.yale.edu>
 
        * newcomment.el (comment-region-internal): Don't rebind
index 3f7ca7ecee80c6a4d33f581e5572186d5ae5f5de..70791a3dae2ffba581e96ba373e7f380ddde4a8d 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
-;; Time-stamp: <2001-07-15 11:12:35 pavel>
+;; Time-stamp: <2001-10-13 10:02:26 pavel>
 ;; Version: 2.1
 ;; Keywords: internal
 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
@@ -362,7 +362,7 @@ START and END delimits the corners of text rectangle."
 (defvar delimit-columns-limit nil)
 
 
-(defun delimit-columns-rectangle-max (startpos &optional ignore ignore)
+(defun delimit-columns-rectangle-max (startpos &optional ignore1 ignore2)
   (set-marker delimit-columns-limit (point))
   (goto-char startpos)
   (let ((ncol 1)
@@ -395,7 +395,7 @@ START and END delimits the corners of text rectangle."
       (setq values (cdr values)))))
 
 
-(defun delimit-columns-rectangle-line (startpos &optional ignore ignore)
+(defun delimit-columns-rectangle-line (startpos &optional ignore1 ignore2)
   (let ((len  (length delimit-columns-max))
        (ncol 0)
        origin)