Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9477096c
Commit
9477096c
authored
Sep 10, 2009
by
Glenn Morris
Browse files
(cvs-mode-find-file): Use forward-line rather than goto-line.
parent
cb4fb1d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
1 deletion
+38
-1
lisp/ChangeLog
lisp/ChangeLog
+34
-0
lisp/pcvs.el
lisp/pcvs.el
+4
-1
No files found.
lisp/ChangeLog
View file @
9477096c
2009-09-10 Glenn Morris <rgm@gnu.org>
* 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 <nickrob@snap.net.nz>
Reported in thread for Bug#4375.
...
...
lisp/pcvs.el
View file @
9477096c
...
...
@@ -2054,7 +2054,10 @@ With a prefix, opens the buffer in an OTHER window."
(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))))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment