emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog pcvs.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog pcvs.el
Date: Thu, 10 Sep 2009 06:23:11 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/09/10 06:23:10

Modified files:
        lisp           : ChangeLog pcvs.el 

Log message:
        (cvs-mode-find-file): Use forward-line rather than goto-line.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16120&r2=1.16121
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/pcvs.el?cvsroot=emacs&r1=1.122&r2=1.123

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16120
retrieving revision 1.16121
diff -u -b -r1.16120 -r1.16121
--- ChangeLog   10 Sep 2009 03:40:51 -0000      1.16120
+++ ChangeLog   10 Sep 2009 06:23:06 -0000      1.16121
@@ -1,3 +1,37 @@
+2009-09-10  Glenn Morris  <address@hidden>
+
+       * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
+
+       * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
+       (byte-compile-file-form-autoload): Don't warn about unknown functions
+       where the autoload statement comes after the use.
+       (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
+       that any handlers inside the body (eg require) are in turn respected.
+
+       * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
+       effects.
+
+       * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
+       and syntax and abbrev tables basic docs, if they don't have any.
+
+       * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
+
+       * international/mule-cmds.el (top-level): Require cl when compiling.
+       (view-hello-file): Use default-value rather than
+       default-enable-multibyte-characters.
+
+       * progmodes/fortran.el: Move all safe and risky properties into the
+       defcustoms.
+
+       * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
+       * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
+       * mail/undigest.el:
+       Put autoloads in rmail.el rather than loaddefs.el.
+       * mail/rmail.el: Regenerate with extracted autoloads.
+
+       * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
+       * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
+
 2009-09-10  Nick Roberts  <address@hidden>
 
        Reported in thread for Bug#4375.

Index: pcvs.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/pcvs.el,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -b -r1.122 -r1.123
--- pcvs.el     29 Jan 2009 08:53:39 -0000      1.122
+++ pcvs.el     10 Sep 2009 06:23:10 -0000      1.123
@@ -2054,7 +2054,10 @@
                          (t (if view 'view-buffer 'switch-to-buffer)))
                    buf)
           (when (and cvs-find-file-and-jump (cvs-applicable-p fi 'diff-base))
-            (goto-line (cvs-find-modif fi)))
+            (save-restriction
+              (widen)
+              (goto-char (point-min))
+              (forward-line (1- (cvs-find-modif fi)))))
           buf))))))
 
 




reply via email to

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