comparison lisp/prim/auto-autoloads.el @ 203:850242ba4a81 r20-3b28

Import from CVS: tag r20-3b28
author cvs
date Mon, 13 Aug 2007 10:02:21 +0200
parents 169c0442b401
children e45d5e7c476e
comparison
equal deleted inserted replaced
202:61eefc8fc970 203:850242ba4a81
115 Interactively, a prefix argument means to unset the variable. 115 Interactively, a prefix argument means to unset the variable.
116 Interactively, the current value (if any) of the variable 116 Interactively, the current value (if any) of the variable
117 appears at the front of the history list when you type in the new value. 117 appears at the front of the history list when you type in the new value.
118 118
119 This function works by modifying `process-environment'." t nil) 119 This function works by modifying `process-environment'." t nil)
120
121 ;;;***
122
123 ;;;### (autoloads (find-function-at-point find-function-on-key find-function-other-frame find-function-other-window find-function) "find-func" "prim/find-func.el")
124
125 (autoload 'find-function "find-func" "\
126 Find the definition of the function near point in the current window.
127
128 Finds the Emacs Lisp library containing the definition of the function
129 near point (selected by `find-function-function') in a buffer and
130 places point before the definition. Point is saved in the buffer if
131 it is one of the current buffers.
132
133 The library where FUNCTION is defined is searched for in
134 `find-function-source-path', if non `nil', otherwise in `load-path'." t nil)
135
136 (autoload 'find-function-other-window "find-func" "\
137 Find the definition of the function near point in the other window.
138
139 Finds the Emacs Lisp library containing the definition of the function
140 near point (selected by `find-function-function') in a buffer and
141 places point before the definition. Point is saved in the buffer if
142 it is one of the current buffers.
143
144 The library where FUNCTION is defined is searched for in
145 `find-function-source-path', if non `nil', otherwise in `load-path'." t nil)
146
147 (autoload 'find-function-other-frame "find-func" "\
148 Find the definition of the function near point in the another frame.
149
150 Finds the Emacs Lisp library containing the definition of the function
151 near point (selected by `find-function-function') in a buffer and
152 places point before the definition. Point is saved in the buffer if
153 it is one of the current buffers.
154
155 The library where FUNCTION is defined is searched for in
156 `find-function-source-path', if non `nil', otherwise in `load-path'." t nil)
157
158 (autoload 'find-function-on-key "find-func" "\
159 Find the function that KEY invokes. KEY is a string.
160 Point is saved if FUNCTION is in the current buffer." t nil)
161
162 (autoload 'find-function-at-point "find-func" "\
163 Find directly the function at point in the other window." t nil)
164
165 (define-key ctl-x-4-map "F" 'find-function-other-window)
166
167 (define-key ctl-x-5-map "F" 'find-function-other-frame)
168
169 (define-key ctl-x-map "K" 'find-function-on-key)
120 170
121 ;;;*** 171 ;;;***
122 172
123 ;;;### (autoloads nil "itimer-autosave" "prim/itimer-autosave.el") 173 ;;;### (autoloads nil "itimer-autosave" "prim/itimer-autosave.el")
124 174
234 in which there are commands to set the option values. 284 in which there are commands to set the option values.
235 Type \\[describe-mode] in that buffer for a list of commands." t nil) 285 Type \\[describe-mode] in that buffer for a list of commands." t nil)
236 286
237 ;;;*** 287 ;;;***
238 288
239 ;;;### (autoloads (profile-key-sequence profile pretty-print-profiling-info) "profile" "prim/profile.el") 289 ;;;### (autoloads (package-admin-add-binary-package package-admin-add-single-file-package) "package-admin" "prim/package-admin.el")
240 290
241 (autoload 'pretty-print-profiling-info "profile" "\ 291 (autoload 'package-admin-add-single-file-package "package-admin" "\
292 Install a single file Lisp package into XEmacs package hierarchy.
293 `file' should be the full path to the lisp file to install.
294 `destdir' should be a simple directory name.
295 The optional `pkg-dir' can be used to override the default package hiearchy
296 \(last package-path)." t nil)
297
298 (autoload 'package-admin-add-binary-package "package-admin" "\
299 Install a pre-bytecompiled XEmacs package into package hierarchy." t nil)
300
301 ;;;***
302
303 ;;;### (autoloads (profile-key-sequence profile profiling-results) "profile" "prim/profile.el")
304
305 (autoload 'profiling-results "profile" "\
242 Print profiling info INFO to STREAM in a pretty format. 306 Print profiling info INFO to STREAM in a pretty format.
243 If INFO is omitted, the current profiling info is retrieved using 307 If INFO is omitted, the current profiling info is retrieved using
244 `get-profiling-info'. 308 `get-profiling-info'.
245 If STREAM is omitted, either a *Profiling Results* buffer or standard 309 If STREAM is omitted, either a *Profiling Results* buffer or standard
246 output are used, depending on whether the function was called 310 output are used, depending on whether the function was called
250 Turn on profiling, execute FORMS and restore profiling state. 314 Turn on profiling, execute FORMS and restore profiling state.
251 Profiling state here means that if profiling was not in effect when 315 Profiling state here means that if profiling was not in effect when
252 PROFILE was called, it will be turned off after FORMS are evaluated. 316 PROFILE was called, it will be turned off after FORMS are evaluated.
253 Otherwise, profiling will be left running. 317 Otherwise, profiling will be left running.
254 318
255 Returns the profiling info, printable by `pretty-print-profiling-info'." nil 'macro) 319 Returns the profiling info, printable by `profiling-results'." nil 'macro)
256 320
257 (autoload 'profile-key-sequence "profile" "\ 321 (autoload 'profile-key-sequence "profile" "\
258 Dispatch the key sequence KEYS and profile the execution. 322 Dispatch the key sequence KEYS and profile the execution.
259 KEYS can be a vector of keypress events, a keypress event, or a character. 323 KEYS can be a vector of keypress events, a keypress event, or a character.
260 The function returns the profiling info." t nil) 324 The function returns the profiling info." t nil)