diff options
| author | Dan Nicolaescu | 2007-11-20 07:56:02 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-11-20 07:56:02 +0000 |
| commit | 6d00e226c320eab31d8212b048cb67c442cb4c8f (patch) | |
| tree | 9365ab7e7b143f9139a4e41cbb45e5ce9d8378f3 /lisp/emulation | |
| parent | 77fdc5c31d75414084c7c255542bc70d6a6cb236 (diff) | |
| download | emacs-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/emulation')
| -rw-r--r-- | lisp/emulation/viper-cmd.el | 3 | ||||
| -rw-r--r-- | lisp/emulation/viper-keym.el | 3 |
2 files changed, 6 insertions, 0 deletions
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 | ||