aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDan Nicolaescu2007-11-20 07:56:02 +0000
committerDan Nicolaescu2007-11-20 07:56:02 +0000
commit6d00e226c320eab31d8212b048cb67c442cb4c8f (patch)
tree9365ab7e7b143f9139a4e41cbb45e5ce9d8378f3 /lisp
parent77fdc5c31d75414084c7c255542bc70d6a6cb236 (diff)
downloademacs-6d00e226c320eab31d8212b048cb67c442cb4c8f.tar.gz
emacs-6d00e226c320eab31d8212b048cb67c442cb4c8f.zip
* progmodes/python.el (info-lookup-maybe-add-help):
* progmodes/ps-mode.el (doc-view-minor-mode): * mail/emacsbug.el (Info-menu, Info-goto-node): * emulation/viper-keym.el (viper-ex) (viper-normalize-minor-mode-map-alist, viper-set-mode-vars-for): * emulation/viper-cmd.el (widget-type, widget-button-press) (viper-set-hooks): * emacs-lisp/tcover-unsafep.el (unsafep-function): * emacs-lisp/tcover-ses.el (ses-set-curcell, ses-update-cells) (ses-load, ses-vector-delete, ses-create-header-string) (ses-read-cell, ses-read-symbol, ses-command-hook, ses-jump): * emacs-lisp/gulp.el (mail-subject, mail-send): 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): (url-generate-unique-filename): Declare as functions.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog16
-rw-r--r--lisp/emacs-lisp/gulp.el3
-rw-r--r--lisp/emacs-lisp/tcover-ses.el11
-rw-r--r--lisp/emacs-lisp/tcover-unsafep.el1
-rw-r--r--lisp/emulation/viper-cmd.el3
-rw-r--r--lisp/emulation/viper-keym.el3
-rw-r--r--lisp/mail/emacsbug.el3
-rw-r--r--lisp/progmodes/ps-mode.el3
-rw-r--r--lisp/progmodes/python.el2
-rw-r--r--lisp/url/ChangeLog4
-rw-r--r--lisp/url/url-file.el1
11 files changed, 48 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1b3c8eb1c32..2ee6983cb53 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,19 @@
12007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * progmodes/python.el (info-lookup-maybe-add-help):
4 * progmodes/ps-mode.el (doc-view-minor-mode):
5 * mail/emacsbug.el (Info-menu, Info-goto-node):
6 * emulation/viper-keym.el (viper-ex)
7 (viper-normalize-minor-mode-map-alist, viper-set-mode-vars-for):
8 * emulation/viper-cmd.el (widget-type, widget-button-press)
9 (viper-set-hooks):
10 * emacs-lisp/tcover-unsafep.el (unsafep-function):
11 * emacs-lisp/tcover-ses.el (ses-set-curcell, ses-update-cells)
12 (ses-load, ses-vector-delete, ses-create-header-string)
13 (ses-read-cell, ses-read-symbol, ses-command-hook, ses-jump):
14 * emacs-lisp/gulp.el (mail-subject, mail-send): Declare as
15 functions.
16
12007-11-20 Stefan Monnier <monnier@iro.umontreal.ca> 172007-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2 18
3 * pcvs.el (cvs-revert-if-needed): Fix copy&paste typo. 19 * pcvs.el (cvs-revert-if-needed): Fix copy&paste typo.
diff --git a/lisp/emacs-lisp/gulp.el b/lisp/emacs-lisp/gulp.el
index 9e0795c8822..a75b52d99bd 100644
--- a/lisp/emacs-lisp/gulp.el
+++ b/lisp/emacs-lisp/gulp.el
@@ -78,6 +78,9 @@ Thanks.")
78 :type 'string 78 :type 'string
79 :group 'gulp) 79 :group 'gulp)
80 80
81(declare-function mail-subject "../mail/sendmail" ())
82(declare-function mail-send "../mail/sendmail" ())
83
81(defun gulp-send-requests (dir &optional time) 84(defun gulp-send-requests (dir &optional time)
82 "Send requests for updates to the authors of Lisp packages in directory DIR. 85 "Send requests for updates to the authors of Lisp packages in directory DIR.
83For each maintainer, the message consists of `gulp-request-header', 86For each maintainer, the message consists of `gulp-request-header',
diff --git a/lisp/emacs-lisp/tcover-ses.el b/lisp/emacs-lisp/tcover-ses.el
index 27ddeb25718..0a4bdce0412 100644
--- a/lisp/emacs-lisp/tcover-ses.el
+++ b/lisp/emacs-lisp/tcover-ses.el
@@ -26,6 +26,17 @@
26(defvar ses-initial-global-parameters) 26(defvar ses-initial-global-parameters)
27(defvar ses-mode-map) 27(defvar ses-mode-map)
28 28
29(declare-function ses-set-curcell "../ses")
30(declare-function ses-update-cells "../ses")
31(declare-function ses-load "../ses")
32(declare-function ses-vector-delete "../ses")
33(declare-function ses-create-header-string "../ses")
34(declare-function ses-read-cell "../ses")
35(declare-function ses-read-symbol "../ses")
36(declare-function ses-command-hook "../ses")
37(declare-function ses-jump "../ses")
38
39
29;;;Here are some macros that exercise SES. Set `pause' to t if you want the 40;;;Here are some macros that exercise SES. Set `pause' to t if you want the
30;;;macros to pause after each step. 41;;;macros to pause after each step.
31(let* ((pause nil) 42(let* ((pause nil)
diff --git a/lisp/emacs-lisp/tcover-unsafep.el b/lisp/emacs-lisp/tcover-unsafep.el
index b999ce63b8c..42c3ebef4e7 100644
--- a/lisp/emacs-lisp/tcover-unsafep.el
+++ b/lisp/emacs-lisp/tcover-unsafep.el
@@ -111,6 +111,7 @@
111 ) 111 )
112 "A-list of (FORM . REASON)... that`unsafep' should decide are unsafe.") 112 "A-list of (FORM . REASON)... that`unsafep' should decide are unsafe.")
113 113
114(declare-function unsafep-function "unsafep" (fun))
114 115
115;;;######################################################################### 116;;;#########################################################################
116(defun testcover-unsafep () 117(defun testcover-unsafep ()
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el
index 5e13edb9495..c90cecf8adc 100644
--- a/lisp/emulation/viper-cmd.el
+++ b/lisp/emulation/viper-cmd.el
@@ -3097,6 +3097,9 @@ On reaching beginning of line, stop and signal error."
3097 (setq this-command 'next-line) 3097 (setq this-command 'next-line)
3098 (if com (viper-execute-com 'viper-next-line val com)))) 3098 (if com (viper-execute-com 'viper-next-line val com))))
3099 3099
3100(declare-function widget-type "../widget" (widget))
3101(declare-function widget-button-press "../widget" (pos &optional event))
3102(declare-function viper-set-hooks "viper" ())
3100 3103
3101(defun viper-next-line-at-bol (arg) 3104(defun viper-next-line-at-bol (arg)
3102 "Next line at beginning of line. 3105 "Next line at beginning of line.
diff --git a/lisp/emulation/viper-keym.el b/lisp/emulation/viper-keym.el
index 0e502720f5e..ade63b1071c 100644
--- a/lisp/emulation/viper-keym.el
+++ b/lisp/emulation/viper-keym.el
@@ -48,6 +48,9 @@
48 48
49(require 'viper-util) 49(require 'viper-util)
50 50
51(declare-function viper-ex "viper-ex" (arg &optional string))
52(declare-function viper-normalize-minor-mode-map-alist "viper-cmd" ())
53(declare-function viper-set-mode-vars-for "viper-cmd" (state))
51 54
52;;; Variables 55;;; Variables
53 56
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index e725a8affb0..eb96ef07612 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -229,6 +229,9 @@ Type SPC to scroll through this section and its subsections."))))
229 (setq report-emacs-bug-orig-text (buffer-substring (point-min) (point)))) 229 (setq report-emacs-bug-orig-text (buffer-substring (point-min) (point))))
230 (goto-char user-point))) 230 (goto-char user-point)))
231 231
232(declare-function Info-menu "info" (menu-item &optional fork))
233(declare-function Info-goto-node "info" (nodename &optional fork))
234
232(defun report-emacs-bug-info () 235(defun report-emacs-bug-info ()
233 "Go to the Info node on reporting Emacs bugs." 236 "Go to the Info node on reporting Emacs bugs."
234 (interactive) 237 (interactive)
diff --git a/lisp/progmodes/ps-mode.el b/lisp/progmodes/ps-mode.el
index c131575f57c..8b26db1a12e 100644
--- a/lisp/progmodes/ps-mode.el
+++ b/lisp/progmodes/ps-mode.el
@@ -480,6 +480,9 @@ If nil, the following are tried in turn, until success:
480 (setq i (1+ i))))) 480 (setq i (1+ i)))))
481 481
482 482
483
484(declare-function doc-view-minor-mode "../doc-view")
485
483;; PostScript mode. 486;; PostScript mode.
484 487
485;;;###autoload 488;;;###autoload
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index f54b7c9f928..4039a4f4a43 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1656,6 +1656,8 @@ instance. Assumes an inferior Python is running."
1656 1656
1657;;;; Info-look functionality. 1657;;;; Info-look functionality.
1658 1658
1659(declare-function info-lookup-maybe-add-help "info-look" (&rest arg))
1660
1659(defun python-after-info-look () 1661(defun python-after-info-look ()
1660 "Set up info-look for Python. 1662 "Set up info-look for Python.
1661Used with `eval-after-load'." 1663Used with `eval-after-load'."
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 56df401cb53..e8ae7233c20 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -3,8 +3,8 @@
3 * url-mailto.el (mail-send-and-exit): 3 * url-mailto.el (mail-send-and-exit):
4 * url-http.el (url-dav-file-attributes): 4 * url-http.el (url-dav-file-attributes):
5 * url-file.el (ange-ftp-set-passwd, ange-ftp-copy-file-internal): 5 * url-file.el (ange-ftp-set-passwd, ange-ftp-copy-file-internal):
6 Declare as functions. 6 (url-generate-unique-filename): Declare as functions.
7 7
8 * url-privacy.el (url-device-type): Define unconditionally. 8 * url-privacy.el (url-device-type): Define unconditionally.
9 9
102007-10-31 Juanma Barranquero <lekktu@gmail.com> 102007-10-31 Juanma Barranquero <lekktu@gmail.com>
diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el
index 9faee051f46..c39dcc030ac 100644
--- a/lisp/url/url-file.el
+++ b/lisp/url/url-file.el
@@ -90,6 +90,7 @@ to them."
90(declare-function ange-ftp-copy-file-internal "../net/ange-ftp" 90(declare-function ange-ftp-copy-file-internal "../net/ange-ftp"
91 (filename newname ok-if-already-exists 91 (filename newname ok-if-already-exists
92 keep-date &optional msg cont nowait)) 92 keep-date &optional msg cont nowait))
93(declare-function url-generate-unique-filename "url-utile" (&optional fmt))
93 94
94(defun url-file-build-filename (url) 95(defun url-file-build-filename (url)
95 (if (not (vectorp url)) 96 (if (not (vectorp url))