aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorDan Nicolaescu2007-11-20 00:57:10 +0000
committerDan Nicolaescu2007-11-20 00:57:10 +0000
commit153ef845b8355e243c2adcf1ea52fb55636683d8 (patch)
tree6b99ed44cdb2c7375215d85698ebb115c4e24400 /lisp/textmodes
parentec6918a80feeee705679f5ca8b365e30a53c6a3d (diff)
downloademacs-153ef845b8355e243c2adcf1ea52fb55636683d8.tar.gz
emacs-153ef845b8355e243c2adcf1ea52fb55636683d8.zip
* progmodes/idlw-help.el: Require browse-url unconditionally, it
is available by default. (idlwave-help-browse-url-available): Change default to t. * emulation/edt.el (defgroup, defcustom): Remove definition. (eval-when-compile): Remove. (c-mark-function): * textmodes/reftex-dcr.el (bibtex-beginning-of-entry): * textmodes/fill.el (comment-search-forward) (comment-string-strip): * progmodes/prolog.el (comint-mode, comint-send-string) (comint-send-region, comint-send-eof): * progmodes/dcl-mode.el (imenu-default-create-index-function): * emulation/viper-util.el (viper-forward-Word): * emulation/vi.el (c-mark-function): * emulation/edt-vt100.el (vt100-wide-mode): * emacs-lisp/timer.el (diary-entry-time): Declare as functions. * url-mailto.el (mail-send-and-exit): * url-http.el (url-dav-file-attributes): * url-file.el (ange-ftp-set-passwd, ange-ftp-copy-file-internal): Declare as functions. * url-privacy.el (url-device-type): Define unconditionally.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/fill.el4
-rw-r--r--lisp/textmodes/reftex-dcr.el2
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index 6a0eb7a42cc..cd60cf3bf34 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -831,6 +831,10 @@ in the active region."
831 (fill-region-as-paragraph beg end justify)))))) 831 (fill-region-as-paragraph beg end justify))))))
832 fill-pfx))) 832 fill-pfx)))
833 833
834(declare-function comment-search-forward "../newcomment" (limit &optional noerror))
835(declare-function comment-string-strip "../newcomment" (str beforep afterp))
836
837
834(defun fill-comment-paragraph (&optional justify) 838(defun fill-comment-paragraph (&optional justify)
835 "Fill current comment. 839 "Fill current comment.
836If we're not in a comment, just return nil so that the caller 840If we're not in a comment, just return nil so that the caller
diff --git a/lisp/textmodes/reftex-dcr.el b/lisp/textmodes/reftex-dcr.el
index e1ecc885f69..86ad54a73fa 100644
--- a/lisp/textmodes/reftex-dcr.el
+++ b/lisp/textmodes/reftex-dcr.el
@@ -359,6 +359,8 @@ will display info in the echo area."
359 'reftex-view-crossref-when-idle 359 'reftex-view-crossref-when-idle
360 reftex-idle-time nil t)))) 360 reftex-idle-time nil t))))
361 361
362(declare-function bibtex-beginning-of-entry "bibtex" ())
363
362(defun reftex-view-crossref-from-bibtex (&optional arg) 364(defun reftex-view-crossref-from-bibtex (&optional arg)
363 "View location in a LaTeX document which cites the BibTeX entry at point. 365 "View location in a LaTeX document which cites the BibTeX entry at point.
364Since BibTeX files can be used by many LaTeX documents, this function 366Since BibTeX files can be used by many LaTeX documents, this function