Mercurial > hg > xemacs-beta
comparison lisp/gnats/auto-autoloads.el @ 163:0132846995bd r20-3b8
Import from CVS: tag r20-3b8
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:43:35 +0200 |
parents | |
children | e121b013d1f0 |
comparison
equal
deleted
inserted
replaced
162:4de2936b4e77 | 163:0132846995bd |
---|---|
1 ;;; DO NOT MODIFY THIS FILE | |
2 (if (not (featurep 'gnats-autoloads)) | |
3 (progn | |
4 | |
5 ;;;### (autoloads (gnats:summ-pr gnats:query-pr gnats:edit-pr gnats:view-pr gnats:gnats-mode) "gnats" "gnats/gnats.el") | |
6 | |
7 (defvar gnats::mode-name nil "\ | |
8 Name of the GNATS mode.") | |
9 | |
10 (setq gnats::mode-name 'gnats:gnats-mode) | |
11 | |
12 (fset 'gnats-mode gnats::mode-name) | |
13 | |
14 (autoload 'gnats:gnats-mode "gnats" "\ | |
15 Major mode for editing problem reports. | |
16 For information about the form see gnats(1) and pr_form(5). | |
17 | |
18 When you are finished editing the buffer, type \\[gnats:submit-pr] to commit | |
19 your changes to the PR database. To abort the edit, type | |
20 \\[gnats:unlock-buffer]. | |
21 | |
22 Special commands: | |
23 \\{gnats-mode-map} | |
24 Turning on gnats-mode calls the value of the variable gnats-mode-hook, | |
25 if it is not nil." nil nil) | |
26 | |
27 (fset 'view-pr 'gnats:view-pr) | |
28 | |
29 (autoload 'gnats:view-pr "gnats" "\ | |
30 Visit the problem report named by the string ID. While viewing, press | |
31 'e' to edit the currently viewed PR." t nil) | |
32 | |
33 (fset 'edit-pr 'gnats:edit-pr) | |
34 | |
35 (autoload 'gnats:edit-pr "gnats" "\ | |
36 Edit the problem report named by the string ID." t nil) | |
37 | |
38 (fset 'query-pr 'gnats:query-pr) | |
39 | |
40 (autoload 'gnats:query-pr "gnats" "\ | |
41 Run query-pr, with user-specified args, and collect output in a buffer. | |
42 While query-pr runs asynchronously, you can use the \\[next-error] command | |
43 to find the text that the hits refer to." t nil) | |
44 | |
45 (fset 'summ-pr 'gnats:summ-pr) | |
46 | |
47 (autoload 'gnats:summ-pr "gnats" "\ | |
48 Run query-pr, with user-specified args, and display a pretty summary. | |
49 Well, display a summary, at least." t nil) | |
50 | |
51 ;;;*** | |
52 | |
53 ;;;### (autoloads (send-pr:send-pr-mode send-pr:send-pr) "send-pr" "gnats/send-pr.el") | |
54 | |
55 (fset 'send-pr 'send-pr:send-pr) | |
56 | |
57 (autoload 'send-pr:send-pr "send-pr" "\ | |
58 Create a buffer and read in the result of `send-pr -P'. | |
59 When finished with editing the problem report use \\[send-pr:submit-pr] | |
60 to send the PR with `send-pr -b -f -'." t nil) | |
61 | |
62 (fset 'send-pr-mode 'send-pr:send-pr-mode) | |
63 | |
64 (autoload 'send-pr:send-pr-mode "send-pr" "\ | |
65 Major mode for submitting problem reports. | |
66 For information about the form see gnats(1) and send-pr(1). | |
67 Special commands: \\{send-pr-mode-map} | |
68 Turning on send-pr-mode calls the value of the variable send-pr-mode-hook, | |
69 if it is not nil." t nil) | |
70 | |
71 ;;;*** | |
72 | |
73 (provide 'gnats-autoloads) | |
74 )) |