1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* textmodes/two-column.el (2C-split, 2C-merge):

* textmodes/bib-mode.el (bib-find-key, mark-bib):
* progmodes/idlw-shell.el (idlwave-shell-move-or-history):
* progmodes/etags.el (find-tag-in-order, etags-tags-apropos)
* progmodes/ada-xref.el (ada-get-all-references):
* obsolete/mlsupport.el (ml-next-line, ml-previous-line):
* emulation/vi.el (vi-previous-line-first-nonwhite)
(vi-effective-range, vi-put-before):
* emulation/edt.el (edt-next-line, edt-previous-line)
(edt-paragraph-forward): Use forward-line.

* progmodes/etags.el (tags-apropos): Require apropos at compile
time too.

* progmodes/prolog.el: Require comint when compiling.
(inferior-prolog-flavor): Move defvar before use.
This commit is contained in:
Dan Nicolaescu 2007-10-19 18:41:09 +00:00
parent 35a46c5c55
commit 7caf6803d5
10 changed files with 46 additions and 27 deletions

View file

@ -127,7 +127,7 @@ with the cdr.")
((null slots)
(if (bobp)
""
(progn (previous-line 1) (bib-find-key bib-assoc))))
(progn (forward-line -1) (bib-find-key bib-assoc))))
((looking-at (car (car slots)))
(cdr (car slots)))
(t (bib-find-key (cdr slots)))
@ -181,7 +181,7 @@ with the cdr.")
(beginning-of-line nil)
(push-mark (point))
(re-search-forward "^ *$" nil 2)
(next-line 1)
(forward-line 1)
(beginning-of-line nil))
(defun unread-bib ()

View file

@ -463,7 +463,7 @@ First column's text sSs Second column's text
(1+ (point)))))
(delete-region point (point))
(setq n 0))
(next-line 1)))))
(forward-line 1)))))
@ -531,7 +531,7 @@ off trailing spaces with \\[delete-trailing-whitespace]."
(end-of-line)
(indent-to-column 2C-window-width)
(insert 2C-separator string))
(next-line 1) ; add one if necessary
(forward-line 1) ; add one if necessary
(set-buffer b2))))
(unless (window-full-width-p)
(enlarge-window 99999 t)))