comparison lisp/prim/auto-autoloads.el @ 98:0d2f883870bc r20-1b1

Import from CVS: tag r20-1b1
author cvs
date Mon, 13 Aug 2007 09:13:56 +0200
parents 821dec489c24
children 4be1180a9e89
comparison
equal deleted inserted replaced
97:498bf5da1c90 98:0d2f883870bc
941 Normally input is edited in Emacs and sent a line at a time. 941 Normally input is edited in Emacs and sent a line at a time.
942 See also `\\[telnet]'." t nil) 942 See also `\\[telnet]'." t nil)
943 943
944 ;;;*** 944 ;;;***
945 945
946 ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el") 946 ;;;### (autoloads (custom-make-dependencies custom-menu-update custom-buffer-create customize-apropos customize-customized customize-face customize-variable customize) "custom-edit" "custom/custom-edit.el")
947 947
948 (defvar ange-ftp-path-format '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" 3 2 4) "\ 948 (autoload 'customize "custom-edit" "\
949 *Format of a fully expanded remote pathname. This is a cons 949 Customize SYMBOL, which must be a customization group." t nil)
950 \(REGEXP . (HOST USER PATH)), where REGEXP is a regular expression matching 950
951 the full remote pathname, and HOST, USER, and PATH are the numbers of 951 (autoload 'customize-variable "custom-edit" "\
952 parenthesized expressions in REGEXP for the components (in that order).") 952 Customize SYMBOL, which must be a variable." t nil)
953 953
954 (autoload 'ange-ftp-hook-function "ange-ftp" nil nil nil) 954 (autoload 'customize-face "custom-edit" "\
955 955 Customize FACE." t nil)
956 (or (assoc (car ange-ftp-path-format) file-name-handler-alist) (setq file-name-handler-alist (cons (cons (car ange-ftp-path-format) 'ange-ftp-hook-function) file-name-handler-alist))) 956
957 957 (autoload 'customize-customized "custom-edit" "\
958 ;;;*** 958 Customize all already customized user options." t nil)
959 959
960 ;;;### (autoloads (dired-make-permissions-interactive) "dired-chmod" "dired/dired-chmod.el") 960 (autoload 'customize-apropos "custom-edit" "\
961 961 Customize all user options matching REGEXP.
962 (autoload 'dired-make-permissions-interactive "dired-chmod" nil nil nil) 962 If ALL (e.g., started with a prefix key), include options which are not
963 963 user-settable." t nil)
964 ;;;*** 964
965 965 (autoload 'custom-buffer-create "custom-edit" "\
966 ;;;### (autoloads (dired-cwd-make-magic) "dired-cwd" "dired/dired-cwd.el") 966 Create a buffer containing OPTIONS.
967 967 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
968 (autoload 'dired-cwd-make-magic "dired-cwd" "\ 968 SYMBOL is a customization option, and WIDGET is a widget for editing
969 Modify COMMAND so that it's working directory is the current dired directory. 969 that option." nil nil)
970 This works by binding `default-directory' to `(default-directory)'s value. 970
971 See also function `default-directory'." t nil) 971 (autoload 'custom-menu-update "custom-edit" "\
972 972 Update customize menu." t nil)
973 ;;;*** 973
974 974 (autoload 'custom-make-dependencies "custom-edit" "\
975 ;;;### (autoloads (dired-do-rename-list dired-do-rename-numeric) "dired-num" "dired/dired-num.el") 975 Batch function to extract custom dependencies from .el files.
976 976 Usage: emacs -batch *.el -f custom-make-dependencies > deps.el" nil nil)
977 (autoload 'dired-do-rename-numeric "dired-num" "\ 977
978 Rename all marked (or next ARG) files using numbers. 978 ;;;***
979 You are prompted for a format string, e.g \"part_%d_of_8\", and a starting 979
980 number, e.g. 1. If there are 8 marked files, this example will rename them to 980 ;;;### (autoloads (widget-browse-at) "widget-browse" "custom/widget-browse.el")
981 981
982 part_1_of_8 982 (autoload 'widget-browse-at "widget-browse" "\
983 part_2_of_8 983 Browse the widget under point." t nil)
984 ... 984
985 part_8_of_8" t nil) 985 ;;;***
986 986
987 (autoload 'dired-do-rename-list "dired-num" "\ 987 ;;;### (autoloads (widget-delete widget-create) "widget-edit" "custom/widget-edit.el")
988 Rename all marked (or next ARG) files using elements from LIST. 988
989 You are prompted for a format string, e.g \"x_%s\", and the list, 989 (autoload 'widget-create "widget-edit" "\
990 e.g. '(foo bar zod). This example will rename the marked files to 990 Create widget of TYPE.
991 991 The optional ARGS are additional keyword arguments." nil nil)
992 x_foo 992
993 x_bar 993 (autoload 'widget-delete "widget-edit" "\
994 x_zod 994 Delete WIDGET." nil nil)
995 995
996 It is an error if LIST has not as many elements as there are files." t nil) 996 ;;;***
997 997
998 ;;;*** 998 ;;;### (autoloads (define-widget) "widget" "custom/widget.el")
999 999
1000 ;;;### (autoloads (dired-rcs-mark-rcs-files dired-rcs-mark-rcs-locked-files) "dired-rcs" "dired/dired-rcs.el") 1000 (autoload 'define-widget "widget" "\
1001 1001 Define a new widget type named NAME from CLASS.
1002 (autoload 'dired-rcs-mark-rcs-locked-files "dired-rcs" "\ 1002
1003 Mark all files that are under RCS control and RCS-locked. 1003 NAME and CLASS should both be symbols, CLASS should be one of the
1004 With prefix argument, unflag all those files. 1004 existing widget types, or nil to create the widget from scratch.
1005 Mentions RCS files for which a working file was not found in this buffer. 1005
1006 Type \\[dired-why] to see them again." t nil) 1006 After the new widget has been defined, the following two calls will
1007 1007 create identical widgets:
1008 (autoload 'dired-rcs-mark-rcs-files "dired-rcs" "\ 1008
1009 Mark all files that are under RCS control. 1009 * (widget-create NAME)
1010 With prefix argument, unflag all those files. 1010
1011 Mentions RCS files for which a working file was not found in this buffer. 1011 * (apply 'widget-create CLASS ARGS)
1012 Type \\[dired-why] to see them again." t nil) 1012
1013 1013 The third argument DOC is a documentation string for the widget." nil nil)
1014 ;;;***
1015
1016 ;;;### (autoloads (dired-extra-startup) "dired-x" "dired/dired-x.el")
1017
1018 (autoload 'dired-extra-startup "dired-x" "\
1019 Automatically put on dired-mode-hook to get extra dired features:
1020 \\<dired-mode-map>
1021 \\[dired-vm] -- VM on folder
1022 \\[dired-rmail] -- Rmail on folder
1023 \\[dired-do-insert-subdir] -- insert all marked subdirs
1024 \\[dired-do-find-file] -- visit all marked files simultaneously
1025 \\[dired-set-marker-char], \\[dired-restore-marker-char] -- change and display dired-marker-char dynamically.
1026 \\[dired-omit-toggle] -- toggle omitting of files
1027 \\[dired-mark-sexp] -- mark by lisp expression
1028 \\[dired-do-unmark] -- replace existing marker with another.
1029 \\[dired-mark-rcs-files] -- mark all RCS controlled files
1030 \\[dired-mark-files-compilation-buffer] -- mark compilation files
1031 \\[dired-copy-filename-as-kill] -- copy the file or subdir names into the kill ring.
1032 You can feed it to other commands using \\[yank].
1033
1034 For more features, see variables
1035
1036 dired-omit-files
1037 dired-omit-extenstions
1038 dired-dangerous-shell-command
1039 dired-mark-keys
1040 dired-local-variables-file
1041 dired-find-subdir
1042 dired-guess-have-gnutar
1043 dired-auto-shell-command-alist
1044
1045 See also functions
1046
1047 dired-sort-on-size
1048 dired-do-relsymlink
1049 dired-flag-extension
1050 dired-virtual
1051 dired-jump-back
1052 dired-jump-back-other-window
1053 " t nil)
1054
1055 ;;;***
1056
1057 ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired/dired.el")
1058
1059 (defvar dired-listing-switches (purecopy "-al") "\
1060 *Switches passed to ls for dired. MUST contain the `l' option.
1061 Can contain even `F', `b', `i' and `s'.")
1062
1063 (defvar dired-chown-program (purecopy (if (memq system-type '(dgux-unix hpux usg-unix-v silicon-graphics-unix irix)) "chown" "/etc/chown")) "\
1064 *Name of chown command (usully `chown' or `/etc/chown').")
1065
1066 (defvar dired-ls-program (purecopy "ls") "\
1067 *Absolute or relative name of the ls program used by dired.")
1068
1069 (defvar dired-ls-F-marks-symlinks t "\
1070 *Informs dired about how ls -lF marks symbolic links.
1071 Set this to t if `dired-ls-program' with -lF marks the symbolic link
1072 itself with a trailing @ (usually the case under Ultrix).
1073
1074 Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
1075 nil, if it gives `bar@ -> foo', set it to t.
1076
1077 Dired checks if there is really a @ appended. Thus, if you have a
1078 marking ls program on one host and a non-marking on another host, and
1079 don't care about symbolic links which really end in a @, you can
1080 always set this variable to t.")
1081
1082 (defvar dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") "\
1083 *Regexp of files to skip when moving point to the first file of a new directory listing.
1084 Nil means move to the subdir line, t means move to first file.")
1085
1086 (defvar dired-keep-marker-move t "\
1087 If t, moved marked files are marked if their originals were.
1088 If a character, those files (marked or not) are marked with that character.")
1089
1090 (defvar dired-keep-marker-copy ?C "\
1091 If t, copied files are marked if their source files were.
1092 If a character, those files are always marked with that character.")
1093
1094 (defvar dired-keep-marker-hardlink ?H "\
1095 If t, hard-linked files are marked if the linked-to files were.
1096 If a character, those files are always marked with that character.")
1097
1098 (defvar dired-keep-marker-symlink ?Y "\
1099 If t, symlinked marked files are marked if the linked-to files were.
1100 If a character, those files are always marked with that character.")
1101
1102 (defvar dired-dwim-target nil "\
1103 *If non-nil, dired tries to guess a default target directory:
1104 If there is a dired buffer displayed in the next window, use
1105 its current subdir, instead of the current subdir of this dired
1106 buffer.
1107
1108 The target is used in the prompt for file copy, move etc.")
1109
1110 (defvar dired-copy-preserve-time nil "\
1111 *If non-nil, Dired preserves the last-modified time in a file copy.
1112 \(This works on only some systems.)\\<dired-mode-map>
1113 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.")
1114
1115 (define-key ctl-x-map "d" 'dired)
1116
1117 (autoload 'dired "dired" "\
1118 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
1119 With an optional prefix argument you can specify the ls SWITCHES that are used.
1120 Dired displays a list of files in DIRNAME (which may also have
1121 shell wildcards appended to select certain files).
1122 You can move around in it with the usual commands.
1123 You can flag files for deletion with \\<dired-mode-map>\\[dired-flag-file-deleted] and then delete them by
1124 typing \\[dired-do-deletions].
1125 Type \\[describe-mode] after entering dired for more info.
1126
1127 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
1128
1129 (define-key ctl-x-4-map "d" 'dired-other-window)
1130
1131 (autoload 'dired-other-window "dired" "\
1132 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil)
1133
1134 (define-key ctl-x-5-map "d" 'dired-other-frame)
1135
1136 (autoload 'dired-other-frame "dired" "\
1137 \"Edit\" directory DIRNAME. Like `dired' but makes a new frame." t nil)
1138
1139 (autoload 'dired-noselect "dired" "\
1140 Like `dired' but returns the dired buffer as value, does not select it." nil nil)
1141
1142 ;;;***
1143
1144 ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "dired/find-dired.el")
1145
1146 (defvar find-ls-option (purecopy (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") '("-exec ls -ld {} \\;" . "-ld"))) "\
1147 *Description of the option to `find' to produce an `ls -l'-type listing.
1148 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION
1149 gives the option (or options) to `find' that produce the desired output.
1150 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.")
1151
1152 (defvar find-grep-options (purecopy (if (eq system-type 'berkeley-unix) "-s" "-q")) "\
1153 *Option to grep to be as silent as possible.
1154 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.
1155 On other systems, the closest you can come is to use `-l'.")
1156
1157 (defvar find-dired-multiple-buffers nil "\
1158 *If non-nil, generates a new buffer for each find")
1159
1160 (autoload 'find-dired "find-dired" "\
1161 Run `find' and go into dired-mode on a buffer of the output.
1162 The command run (after changing into DIR) is
1163
1164 find . \\( ARGS \\) -ls" t nil)
1165
1166 (autoload 'find-name-dired "find-dired" "\
1167 Search DIR recursively for files matching the globbing pattern PATTERN,
1168 and run dired on those files.
1169 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
1170 The command run (after changing into DIR) is
1171
1172 find . -name 'PATTERN' -ls" t nil)
1173
1174 (autoload 'find-grep-dired "find-dired" "\
1175 Find files in DIR containing a regexp ARG and start Dired on output.
1176 The command run (after changing into DIR) is
1177
1178 find . -type f -exec test -r {} \\; -exec egrep -s ARG {} \\; -ls
1179
1180 Thus ARG can also contain additional grep options." t nil)
1181 1014
1182 ;;;*** 1015 ;;;***
1183 1016
1184 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el") 1017 ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug/edebug.el")
1185 1018
1372 When called interactively, displays the version." t nil) 1205 When called interactively, displays the version." t nil)
1373 1206
1374 (autoload 'ediff-documentation "ediff" "\ 1207 (autoload 'ediff-documentation "ediff" "\
1375 Display Ediff's manual. 1208 Display Ediff's manual.
1376 With optional NODE, goes to that node." t nil) 1209 With optional NODE, goes to that node." t nil)
1210
1211 ;;;***
1212
1213 ;;;### (autoloads nil "default-dir" "efs/default-dir.el")
1214
1215 (defvar default-directory-function nil "\
1216 A function to call to compute the default-directory for the current buffer.
1217 If this is nil, the function default-directory will return the value of the
1218 variable default-directory.
1219 Buffer local.")
1220
1221 ;;;***
1222
1223 ;;;### (autoloads (dired-jump-back-other-frame dired-jump-back-other-window dired-jump-back dired-noselect dired-other-frame dired-other-window dired) "dired" "efs/dired.el")
1224
1225 (defvar dired-compression-method 'compress "\
1226 *Type of compression program to use.
1227 Give as a symbol.
1228 Currently-recognized methods are: gzip pack compact compress.
1229 To change this variable use \\[dired-do-compress] with a zero prefix.")
1230
1231 (defvar dired-compression-method-alist '((gzip ".gz" ("gzip") ("gzip" "-d") "-f") (compress ".Z" ("compress" "-f") ("compress" "-d") "-f") (pack ".z" ("pack" "-f") ("unpack")) (compact ".C" ("compact") ("uncompact"))) "\
1232 *Association list of compression method descriptions.
1233 Each element of the table should be a list of the form
1234
1235 (compress-type extension (compress-args) (decompress-args) force-flag)
1236
1237 where
1238 `compress-type' is a unique symbol in the alist to which
1239 `dired-compression-method' can be set;
1240 `extension' is the file extension (as a string) used by files compressed
1241 by this method;
1242 `compress-args' is a list of the path of the compression program and
1243 flags to pass as separate arguments;
1244 `decompress-args' is a list of the path of the decompression
1245 program and flags to pass as separate arguments.
1246 `force-flag' is the switch to pass to the command to force overwriting
1247 of existing files.
1248
1249 For example:
1250
1251 (setq dired-compresssion-method-alist
1252 (cons '(frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\") \"-f\")
1253 dired-compression-method-alist))
1254 => ((frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\"))
1255 (gzip \".gz\" (\"gzip\") (\"gunzip\"))
1256 ...)
1257
1258 See also: dired-compression-method <V>")
1259
1260 (defvar dired-ls-program "ls" "\
1261 *Absolute or relative name of the ls program used by dired.")
1262
1263 (defvar dired-listing-switches "-al" "\
1264 *Switches passed to ls for dired. MUST contain the `l' option.
1265 Can contain even `F', `b', `i' and `s'.")
1266
1267 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v)) "chown" "/etc/chown") "\
1268 *Name of chown command (usully `chown' or `/etc/chown').")
1269
1270 (defvar dired-gnutar-program nil "\
1271 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\").
1272 GNU tar's `z' switch is used for compressed tar files.
1273 If you don't have GNU tar, set this to nil: a pipe using `zcat' is then used.")
1274
1275 (defvar dired-unshar-program nil "\
1276 *Set to the name of the unshar program, if you have it.")
1277
1278 (defvar dired-local-variables-file ".dired" "\
1279 *If non-nil, filename for local variables for Dired.
1280 If Dired finds a file with that name in the current directory, it will
1281 temporarily insert it into the dired buffer and run `hack-local-variables'.
1282
1283 Type \\[info] and `g' `(emacs)File Variables' `RET' for more info on
1284 local variables.")
1285
1286 (defvar dired-kept-versions 2 "\
1287 *When cleaning directory, number of versions to keep.")
1288
1289 (defvar dired-find-subdir nil "\
1290 *Determines whether dired tries to lookup a subdir in existing buffers.
1291 If non-nil, dired does not make a new buffer for a directory if it can be
1292 found (perhaps as subdir) in some existing dired buffer. If there are several
1293 dired buffers for a directory, then the most recently used one is chosen.
1294
1295 Dired avoids switching to the current buffer, so that if you have
1296 a normal and a wildcard buffer for the same directory, C-x d RET will
1297 toggle between those two.")
1298
1299 (defvar dired-use-file-transformers t "\
1300 *Determines whether dired uses file transformers.
1301 If non-nil `dired-do-shell-command' will apply file transformers to file names.
1302 See \\[describe-function] for dired-do-shell-command for more information.")
1303
1304 (defvar dired-dwim-target nil "\
1305 *If non-nil, dired tries to guess a default target directory.
1306 This means that if there is a dired buffer displayed in the next window,
1307 use its current subdir, instead of the current subdir of this dired buffer.
1308 The target is put in the prompt for file copy, rename, etc.")
1309
1310 (defvar dired-copy-preserve-time nil "\
1311 *If non-nil, Dired preserves the last-modified time in a file copy.
1312 \(This works on only some systems.)\\<dired-mode-map>
1313 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.")
1314
1315 (defvar dired-no-confirm nil "\
1316 *If non-nil, a list of symbols for commands dired should not confirm.
1317 It can be a sublist of
1318
1319 '(byte-compile chgrp chmod chown compress copy delete hardlink load
1320 move print shell symlink uncompress recursive-delete kill-file-buffer
1321 kill-dired-buffer patch create-top-dir revert-subdirs)
1322
1323 The meanings of most of the symbols are obvious. A few exceptions:
1324
1325 'compress applies to compression or decompression by any of the
1326 compression program in `dired-compression-method-alist'.
1327
1328 'kill-dired-buffer applies to offering to kill dired buffers for
1329 directories which have been deleted.
1330
1331 'kill-file-buffer applies to offering to kill buffers visiting files
1332 which have been deleted.
1333
1334 'recursive-delete applies to recursively deleting non-empty
1335 directories, and all of their contents.
1336
1337 'create-top-dir applies to `dired-up-directory' creating a new top level
1338 directory for the dired buffer.
1339
1340 'revert-subdirs applies to re-reading subdirectories which have
1341 been modified on disk.
1342
1343 Note that this list also applies to remote files accessed with efs
1344 or ange-ftp.")
1345
1346 (defvar dired-backup-if-overwrite nil "\
1347 *Non-nil if Dired should ask about making backups before overwriting files.
1348 Special value 'always suppresses confirmation.")
1349
1350 (defvar dired-omit-files nil "\
1351 *If non-nil un-interesting files will be omitted from this dired buffer.
1352 Use \\[dired-omit-toggle] to see these files. (buffer local)")
1353
1354 (defvar dired-mail-reader 'rmail "\
1355 *Mail reader used by dired for dired-read-mail (\\[dired-read-mail]).
1356 The symbols 'rmail and 'vm are the only two allowed values.")
1357
1358 (define-key ctl-x-map "d" 'dired)
1359
1360 (autoload 'dired "dired" "\
1361 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
1362 Optional second argument SWITCHES specifies the `ls' options used.
1363 \(Interactively, use a prefix argument to be able to specify SWITCHES.)
1364 Dired displays a list of files in DIRNAME (which may also have
1365 shell wildcards appended to select certain files). If DIRNAME is a cons,
1366 its first element is taken as the directory name and the resr as an explicit
1367 list of files to make directory entries for.
1368 \\<dired-mode-map>You can move around in it with the usual commands.
1369 You can flag files for deletion with \\[dired-flag-file-deletion] and then
1370 delete them by typing \\[dired-expunge-deletions].
1371 Type \\[dired-describe-mode] after entering dired for more info.
1372
1373 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
1374
1375 (define-key ctl-x-4-map "d" 'dired-other-window)
1376
1377 (autoload 'dired-other-window "dired" "\
1378 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil)
1379
1380 (define-key ctl-x-5-map "d" 'dired-other-frame)
1381
1382 (autoload 'dired-other-frame "dired" "\
1383 \"Edit\" directory DIRNAME. Like `dired' but makes a new frame." t nil)
1384
1385 (autoload 'dired-noselect "dired" "\
1386 Like `dired' but returns the dired buffer as value, does not select it." nil nil)
1387
1388 (define-key ctl-x-map "\C-j" 'dired-jump-back)
1389
1390 (autoload 'dired-jump-back "dired" "\
1391 Jump back to dired.
1392 If in a file, dired the current directory and move to file's line.
1393 If in dired already, pop up a level and goto old directory's line.
1394 In case the proper dired file line cannot be found, refresh the dired
1395 buffer and try again." t nil)
1396
1397 (define-key ctl-x-4-map "\C-j" 'dired-jump-back-other-window)
1398
1399 (autoload 'dired-jump-back-other-window "dired" "\
1400 Like \\[dired-jump-back], but to other window." t nil)
1401
1402 (define-key ctl-x-5-map "\C-j" 'dired-jump-back-other-frame)
1403
1404 (autoload 'dired-jump-back-other-frame "dired" "\
1405 Like \\[dired-jump-back], but in another frame." t nil)
1377 1406
1378 ;;;*** 1407 ;;;***
1379 1408
1380 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el") 1409 ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "electric/ebuff-menu.el")
1381 1410
1869 arg non-nil from a program) is the number of seconds to sleep between 1898 arg non-nil from a program) is the number of seconds to sleep between
1870 generations (this defaults to 1)." t nil) 1899 generations (this defaults to 1)." t nil)
1871 1900
1872 ;;;*** 1901 ;;;***
1873 1902
1903 ;;;### (autoloads (mine-help mine-version mine) "mine" "games/mine.el")
1904
1905 (autoload 'mine "mine" "\
1906 Play Mine. Optional prefix argument is the number of mines.
1907
1908 To play Mine, type `\\[mine]' or `\\[universal-argument] NUM \\[mine]'.
1909
1910 An optional prefix argument specifies the number of mines to be hidden
1911 in the field. If no prefix argument is given, a percentage
1912 `mine-mines-%' of the field will contain mines.
1913
1914 What is Mine?\\<mine-mode-map>
1915
1916 Mine is a classical game of hide and seek played on a rectangular grid
1917 containing `mine-xmax' by `mine-ymax' squares (the mine field).
1918
1919 Your opponent (Emacs, in this case) has hidden several mines within
1920 this field. The object of the game is to find every hidden mine.
1921
1922 When you're sure a square does NOT contain a mine, you can hit it:
1923 move the mouse over the square and press `\\[mine-mouse-hit]' or
1924 move the cursor with the usual keys and press `\\[mine-hit-curpoint]'.
1925
1926 If the square is a mine, you loose.
1927 If the square isn't a mine, a number appears which represents
1928 the number of mines in the surrounding eight squares.
1929
1930 When you think a square DOES contain a mine, you can mark it:
1931 move the mouse over the square and press `\\[mine-mouse-mark]' or
1932 move the cursor with the usual keys and press `\\[mine-mark-curpoint]'.
1933
1934 The number of hidden mines remaining in the mine field is indicated
1935 inside the buffer. Every time you mark a square as a mine, this
1936 number decreases by one, even if you incorrectly mark a square.
1937
1938 If `mine-torus' is non-nil (the default), the Mine game is played over
1939 a periodic field (like a torus). Each mine is hidden periodically
1940 over the mine board `mine-nb-tiles-x' times in the x direction and
1941 `mine-nb-tiles-y' times in the y direction.
1942
1943 If `mine-colorp' is non-nil (the default, if the system allows it),
1944 the game is displayed with colors. The colors can be chosen with the
1945 variable `mine-colors'.
1946
1947 If the redisplay is not fast enough, increase `mine-level'. If you
1948 want to see a smoother (slower) redisplay, decrease `mine-level',
1949 `mine-count1-max' and `mine-count2-max'.
1950
1951 You can get help on `mine-mode' and its key bindings by pressing `\\[mine-help]'
1952 while in the *Mine* buffer.
1953 " t nil)
1954
1955 (autoload 'mine-version "mine" "\
1956 Return string describing the current version of Mine.
1957 When called interactively, displays the version." t nil)
1958
1959 (autoload 'mine-help "mine" "\
1960 *Get help on `mine-mode'." t nil)
1961
1962 ;;;***
1963
1874 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el") 1964 ;;;### (autoloads (mpuz) "mpuz" "games/mpuz.el")
1875 1965
1876 (autoload 'mpuz "mpuz" "\ 1966 (autoload 'mpuz "mpuz" "\
1877 Multiplication puzzle with GNU Emacs." t nil) 1967 Multiplication puzzle with GNU Emacs." t nil)
1878 1968
1910 (autoload 'gnus-earcon-display "earcon" "\ 2000 (autoload 'gnus-earcon-display "earcon" "\
1911 Play sounds in message buffers." t nil) 2001 Play sounds in message buffers." t nil)
1912 2002
1913 ;;;*** 2003 ;;;***
1914 2004
2005 ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el")
2006
2007 (autoload 'gnus-audio-play "gnus-audio" "\
2008 Play a sound through the speaker." t nil)
2009
2010 ;;;***
2011
1915 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el") 2012 ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el")
1916 2013
1917 (autoload 'gnus-jog-cache "gnus-cache" "\ 2014 (autoload 'gnus-jog-cache "gnus-cache" "\
1918 Go through all groups and put the articles into the cache." t nil) 2015 Go through all groups and put the articles into the cache.
2016
2017 Usage:
2018 $ emacs -batch -l ~/.emacs -l gnus -f gnus-jog-cache" t nil)
1919 2019
1920 (autoload 'gnus-cache-generate-active "gnus-cache" "\ 2020 (autoload 'gnus-cache-generate-active "gnus-cache" "\
1921 Generate the cache active file." t nil) 2021 Generate the cache active file." t nil)
1922 2022
1923 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\ 2023 (autoload 'gnus-cache-generate-nov-databases "gnus-cache" "\
1924 Generate NOV files recursively starting in DIR." t nil) 2024 Generate NOV files recursively starting in DIR." t nil)
1925 2025
1926 ;;;*** 2026 ;;;***
1927 2027
1928 ;;;### (autoloads (gnus-sound-play) "gnus-sound" "gnus/gnus-sound.el") 2028 ;;;### (autoloads (gnus-fetch-group) "gnus-group" "gnus/gnus-group.el")
1929 2029
1930 (autoload 'gnus-sound-play "gnus-sound" "\ 2030 (autoload 'gnus-fetch-group "gnus-group" "\
1931 Play a sound through the speaker." t nil) 2031 Start Gnus if necessary and enter GROUP.
2032 Returns whether the fetching was successful or not." t nil)
2033
2034 ;;;***
2035
2036 ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el")
2037
2038 (defalias 'gnus-batch-kill 'gnus-batch-score)
2039
2040 (autoload 'gnus-batch-score "gnus-kill" "\
2041 Run batched scoring.
2042 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
2043 Newsgroups is a list of strings in Bnews format. If you want to score
2044 the comp hierarchy, you'd say \"comp.all\". If you would not like to
2045 score the alt hierarchy, you'd say \"!alt.all\"." t nil)
2046
2047 ;;;***
2048
2049 ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el")
2050
2051 (autoload 'gnus-change-server "gnus-move" "\
2052 Move from FROM-SERVER to TO-SERVER.
2053 Update the .newsrc.eld file to reflect the change of nntp server." t nil)
1932 2054
1933 ;;;*** 2055 ;;;***
1934 2056
1935 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el") 2057 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el")
1936 2058
1944 2066
1945 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil) 2067 $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil)
1946 2068
1947 ;;;*** 2069 ;;;***
1948 2070
1949 ;;;### (autoloads (gnus-batch-score gnus-fetch-group gnus gnus-other-frame gnus-slave gnus-no-server gnus-slave-no-server gnus-add-configuration gnus-update-format) "gnus" "gnus/gnus.el") 2071 ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el")
1950 2072
1951 (autoload 'gnus-update-format "gnus" "\ 2073 (autoload 'gnus-update-format "gnus-spec" "\
1952 Update the format specification near point." t nil) 2074 Update the format specification near point." t nil)
1953 2075
1954 (autoload 'gnus-add-configuration "gnus" "\ 2076 ;;;***
2077
2078 ;;;### (autoloads (gnus-declare-backend gnus-unload) "gnus-start" "gnus/gnus-start.el")
2079
2080 (autoload 'gnus-unload "gnus-start" "\
2081 Unload all Gnus features." t nil)
2082
2083 (autoload 'gnus-declare-backend "gnus-start" "\
2084 Declare backend NAME with ABILITIES as a Gnus backend." nil nil)
2085
2086 ;;;***
2087
2088 ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el")
2089
2090 (autoload 'gnus-add-configuration "gnus-win" "\
1955 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil) 2091 Add the window configuration CONF to `gnus-buffer-configuration'." nil nil)
2092
2093 ;;;***
2094
2095 ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server gnus-slave-no-server) "gnus" "gnus/gnus.el")
1956 2096
1957 (autoload 'gnus-slave-no-server "gnus" "\ 2097 (autoload 'gnus-slave-no-server "gnus" "\
1958 Read network news as a slave, without connecting to local server" t nil) 2098 Read network news as a slave, without connecting to local server" t nil)
1959 2099
1960 (autoload 'gnus-no-server "gnus" "\ 2100 (autoload 'gnus-no-server "gnus" "\
1975 Read network news. 2115 Read network news.
1976 If ARG is non-nil and a positive number, Gnus will use that as the 2116 If ARG is non-nil and a positive number, Gnus will use that as the
1977 startup level. If ARG is non-nil and not a positive number, Gnus will 2117 startup level. If ARG is non-nil and not a positive number, Gnus will
1978 prompt the user for the name of an NNTP server to use." t nil) 2118 prompt the user for the name of an NNTP server to use." t nil)
1979 2119
1980 (autoload 'gnus-fetch-group "gnus" "\
1981 Start Gnus if necessary and enter GROUP.
1982 Returns whether the fetching was successful or not." t nil)
1983
1984 (defalias 'gnus-batch-kill 'gnus-batch-score)
1985
1986 (autoload 'gnus-batch-score "gnus" "\
1987 Run batched scoring.
1988 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
1989 Newsgroups is a list of strings in Bnews format. If you want to score
1990 the comp hierarchy, you'd say \"comp.all\". If you would not like to
1991 score the alt hierarchy, you'd say \"!alt.all\"." t nil)
1992
1993 ;;;*** 2120 ;;;***
1994 2121
1995 ;;;### (autoloads (unbold-region bold-region message-news-other-frame message-news-other-window message-mail-other-frame message-mail-other-window message-bounce message-resend message-forward message-recover message-supersede message-cancel-news message-followup message-wide-reply message-reply message-news message-mail message-mode) "message" "gnus/message.el") 2122 ;;;### (autoloads (unbold-region bold-region message-news-other-frame message-news-other-window message-mail-other-frame message-mail-other-window message-bounce message-resend message-forward message-recover message-supersede message-cancel-news message-followup message-wide-reply message-reply message-news message-mail message-mode) "message" "gnus/message.el")
1996 2123
1997 (defvar message-fcc-handler-function 'rmail-output "\ 2124 (defcustom message-fcc-handler-function 'message-output "*A function called to save outgoing articles.\nThis function will be called with the name of the file to store the\narticle in. The default function is `message-output' which saves in Unix\nmailbox format." :type '(radio (function-item message-output) (function :tag "Other")) :group 'message-sending)
1998 *A function called to save outgoing articles. 2125
1999 This function will be called with the name of the file to store the 2126 (defcustom message-from-style 'default "*Specifies how \"From\" headers look.\n\nIf `nil', they contain just the return address like:\n king@grassland.com\nIf `parens', they look like:\n king@grassland.com (Elvis Parsley)\nIf `angles', they look like:\n Elvis Parsley <king@grassland.com>\n\nOtherwise, most addresses look like `angles', but they look like\n`parens' if `angles' would need quoting and `parens' would not." :type '(choice (const :tag "simple" nil) (const parens) (const angles) (const default)) :group 'message-headers)
2000 article in. The default function is `rmail-output' which saves in Unix 2127
2001 mailbox format.") 2128 (defcustom message-signature-separator "^-- *$" "Regexp matching the signature separator." :type 'regexp :group 'message-various)
2002 2129
2003 (defvar message-courtesy-message "The following message is a courtesy copy of an article\nthat has been posted as well.\n\n" "\ 2130 (defcustom message-user-organization-file "/usr/lib/news/organization" "*Local news organization file." :type 'file :group 'message-headers)
2004 *This is inserted at the start of a mailed copy of a posted message. 2131
2005 If this variable is nil, no such courtesy message will be added.") 2132 (defcustom message-send-mail-function 'message-send-mail-with-sendmail "Function to call to send the current buffer as mail.\nThe headers should be delimited by a line whose contents match the\nvariable `mail-header-separator'.\n\nLegal values include `message-send-mail-with-sendmail' (the default),\n`message-send-mail-with-mh' and `message-send-mail-with-qmail'." :type '(radio (function-item message-send-mail-with-sendmail) (function-item message-send-mail-with-mh) (function-item message-send-mail-with-qmail) (function :tag "Other")) :group 'message-sending :group 'message-mail)
2006 2133
2007 (defvar message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):" "\ 2134 (defcustom message-citation-line-function 'message-insert-citation-line "*Function called to insert the \"Whomever writes:\" line." :type 'function :group 'message-insertion)
2008 *Regexp that matches headers to be removed in resent bounced mail.") 2135
2009 2136 (defcustom message-yank-prefix "> " "*Prefix inserted on the lines of yanked messages.\nnil means use indentation." :type 'string :group 'message-insertion)
2010 (defvar message-from-style 'default "\ 2137
2011 *Specifies how \"From\" headers look. 2138 (defcustom message-cite-function (if (and (boundp 'mail-citation-hook) mail-citation-hook) mail-citation-hook 'message-cite-original) "*Function for citing an original message." :type '(radio (function-item message-cite-original) (function-item sc-cite-original) (function :tag "Other")) :group 'message-insertion)
2012 2139
2013 If `nil', they contain just the return address like: 2140 (defcustom message-indent-citation-function 'message-indent-citation "*Function for modifying a citation just inserted in the mail buffer.\nThis can also be a list of functions. Each function can find the\ncitation between (point) and (mark t). And each function should leave\npoint and mark around the citation text as modified." :type 'function :group 'message-insertion)
2014 king@grassland.com 2141
2015 If `parens', they look like: 2142 (defcustom message-signature t "*String to be inserted at the end of the message buffer.\nIf t, the `message-signature-file' file will be inserted instead.\nIf a function, the result from the function will be used instead.\nIf a form, the result from the form will be used instead." :type 'sexp :group 'message-insertion)
2016 king@grassland.com (Elvis Parsley) 2143
2017 If `angles', they look like: 2144 (defcustom message-signature-file "~/.signature" "*File containing the text inserted at end of message buffer." :type 'file :group 'message-insertion)
2018 Elvis Parsley <king@grassland.com>
2019
2020 Otherwise, most addresses look like `angles', but they look like
2021 `parens' if `angles' would need quoting and `parens' would not.")
2022
2023 (defvar message-syntax-checks nil "\
2024 Controls what syntax checks should not be performed on outgoing posts.
2025 To disable checking of long signatures, for instance, add
2026 `(signature . disabled)' to this list.
2027
2028 Don't touch this variable unless you really know what you're doing.
2029
2030 Checks include subject-cmsg multiple-headers sendsys message-id from
2031 long-lines control-chars size new-text redirected-followup signature
2032 approved sender empty empty-headers message-id from subject.")
2033
2034 (defvar message-required-news-headers '(From Newsgroups Subject Date Message-ID (optional . Organization) Lines (optional . X-Newsreader)) "\
2035 *Headers to be generated or prompted for when posting an article.
2036 RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
2037 Message-ID. Organization, Lines, In-Reply-To, Expires, and
2038 X-Newsreader are optional. If don't you want message to insert some
2039 header, remove it from this list.")
2040
2041 (defvar message-required-mail-headers '(From Subject Date (optional . In-Reply-To) Message-ID Lines (optional . X-Mailer)) "\
2042 *Headers to be generated or prompted for when mailing a message.
2043 RFC822 required that From, Date, To, Subject and Message-ID be
2044 included. Organization, Lines and X-Mailer are optional.")
2045
2046 (defvar message-deletable-headers '(Message-ID Date) "\
2047 *Headers to be deleted if they already exist and were generated by message previously.")
2048
2049 (defvar message-ignored-news-headers "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:" "\
2050 *Regexp of headers to be removed unconditionally before posting.")
2051
2052 (defvar message-ignored-mail-headers "^Gcc:\\|^Fcc:" "\
2053 *Regexp of headers to be removed unconditionally before mailing.")
2054
2055 (defvar message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:" "\
2056 *Header lines matching this regexp will be deleted before posting.
2057 It's best to delete old Path and Date headers before posting to avoid
2058 any confusion.")
2059
2060 (defvar message-signature-separator "^-- *$" "\
2061 Regexp matching the signature separator.")
2062
2063 (defvar message-interactive nil "\
2064 Non-nil means when sending a message wait for and display errors.
2065 nil means let mailer mail back a message to report errors.")
2066
2067 (defvar message-generate-new-buffers t "\
2068 *Non-nil means that a new message buffer will be created whenever `mail-setup' is called.
2069 If this is a function, call that function with three parameters: The type,
2070 the to address and the group name. (Any of these may be nil.) The function
2071 should return the new buffer name.")
2072
2073 (defvar message-kill-buffer-on-exit nil "\
2074 *Non-nil means that the message buffer will be killed after sending a message.")
2075
2076 (defvar message-user-organization-file "/usr/lib/news/organization" "\
2077 *Local news organization file.")
2078
2079 (defvar message-signature-before-forwarded-message t "\
2080 *If non-nil, put the signature before any included forwarded message.")
2081
2082 (defvar message-included-forward-headers "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-\\|^Message-ID:\\|^References:" "\
2083 *Regexp matching headers to be included in forwarded messages.")
2084
2085 (defvar message-ignored-resent-headers "^Return-receipt" "\
2086 *All headers that match this regexp will be deleted when resending a message.")
2087
2088 (defvar message-ignored-cited-headers "." "\
2089 Delete these headers from the messages you yank.")
2090
2091 (defvar message-send-mail-function 'message-send-mail-with-sendmail "\
2092 Function to call to send the current buffer as mail.
2093 The headers should be delimited by a line whose contents match the
2094 variable `mail-header-separator'.
2095
2096 Legal values include `message-send-mail-with-mh' and
2097 `message-send-mail-with-sendmail', which is the default.")
2098
2099 (defvar message-send-news-function 'message-send-news "\
2100 Function to call to send the current buffer as news.
2101 The headers should be delimited by a line whose contents match the
2102 variable `mail-header-separator'.")
2103
2104 (defvar message-reply-to-function nil "\
2105 Function that should return a list of headers.
2106 This function should pick out addresses from the To, Cc, and From headers
2107 and respond with new To and Cc headers.")
2108
2109 (defvar message-wide-reply-to-function nil "\
2110 Function that should return a list of headers.
2111 This function should pick out addresses from the To, Cc, and From headers
2112 and respond with new To and Cc headers.")
2113
2114 (defvar message-followup-to-function nil "\
2115 Function that should return a list of headers.
2116 This function should pick out addresses from the To, Cc, and From headers
2117 and respond with new To and Cc headers.")
2118
2119 (defvar message-use-followup-to 'ask "\
2120 *Specifies what to do with Followup-To header.
2121 If nil, ignore the header. If it is t, use its value, but query before
2122 using the \"poster\" value. If it is the symbol `ask', query the user
2123 whether to ignore the \"poster\" value. If it is the symbol `use',
2124 always use the value.")
2125
2126 (defvar message-post-method (cond ((and (boundp 'gnus-post-method) gnus-post-method) gnus-post-method) ((boundp 'gnus-select-method) gnus-select-method) (t '(nnspool ""))) "\
2127 Method used to post news.")
2128
2129 (defvar message-generate-headers-first nil "\
2130 *If non-nil, generate all possible headers before composing.")
2131
2132 (defvar message-citation-line-function 'message-insert-citation-line "\
2133 *Function called to insert the \"Whomever writes:\" line.")
2134
2135 (defvar message-yank-prefix "> " "\
2136 *Prefix inserted on the lines of yanked messages.
2137 nil means use indentation.")
2138
2139 (defvar message-cite-function 'message-cite-original "\
2140 *Function for citing an original message.")
2141
2142 (defvar message-indent-citation-function 'message-indent-citation "\
2143 *Function for modifying a citation just inserted in the mail buffer.
2144 This can also be a list of functions. Each function can find the
2145 citation between (point) and (mark t). And each function should leave
2146 point and mark around the citation text as modified.")
2147
2148 (defvar message-signature t "\
2149 *String to be inserted at the end of the message buffer.
2150 If t, the `message-signature-file' file will be inserted instead.
2151 If a function, the result from the function will be used instead.
2152 If a form, the result from the form will be used instead.")
2153
2154 (defvar message-signature-file "~/.signature" "\
2155 *File containing the text inserted at end of message. buffer.")
2156
2157 (defvar message-default-headers nil "\
2158 *A string containing header lines to be inserted in outgoing messages.
2159 It is inserted before you edit the message, so you can edit or delete
2160 these lines.")
2161
2162 (defvar message-default-mail-headers nil "\
2163 *A string of header lines to be inserted in outgoing mails.")
2164
2165 (defvar message-default-news-headers nil "\
2166 *A string of header lines to be inserted in outgoing news articles.")
2167 2145
2168 (autoload 'message-mode "message" "\ 2146 (autoload 'message-mode "message" "\
2169 Major mode for editing mail and news to be sent. 2147 Major mode for editing mail and news to be sent.
2170 Like Text Mode but with these additional commands: 2148 Like Text Mode but with these additional commands:
2171 C-c C-s message-send (send the message) C-c C-c message-send-and-exit 2149 C-c C-s message-send (send the message) C-c C-c message-send-and-exit
2172 C-c C-f move to a header field (and create it if there isn't): 2150 C-c C-f move to a header field (and create it if there isn't):
2173 C-c C-f C-t move to To C-c C-f C-s move to Subject 2151 C-c C-f C-t move to To C-c C-f C-s move to Subject
2174 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc 2152 C-c C-f C-c move to Cc C-c C-f C-b move to Bcc
2175 C-c C-f C-f move to Fcc C-c C-f C-r move to Reply-To 2153 C-c C-f C-w move to Fcc C-c C-f C-r move to Reply-To
2176 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups 2154 C-c C-f C-u move to Summary C-c C-f C-n move to Newsgroups
2177 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution 2155 C-c C-f C-k move to Keywords C-c C-f C-d move to Distribution
2178 C-c C-f C-o move to Followup-To 2156 C-c C-f C-f move to Followup-To
2179 C-c C-t message-insert-to (add a To header to a news followup) 2157 C-c C-t message-insert-to (add a To header to a news followup)
2180 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply) 2158 C-c C-n message-insert-newsgroups (add a Newsgroup header to a news reply)
2181 C-c C-b message-goto-body (move to beginning of message text). 2159 C-c C-b message-goto-body (move to beginning of message text).
2182 C-c C-i message-goto-signature (move to the beginning of the signature). 2160 C-c C-i message-goto-signature (move to the beginning of the signature).
2183 C-c C-w message-insert-signature (insert `message-signature-file' file). 2161 C-c C-w message-insert-signature (insert `message-signature-file' file).
2184 C-c C-y message-yank-original (insert current message, if any). 2162 C-c C-y message-yank-original (insert current message, if any).
2185 C-c C-q message-fill-yanked-message (fill what was yanked). 2163 C-c C-q message-fill-yanked-message (fill what was yanked).
2186 C-c C-r message-ceasar-buffer-body (rot13 the message body)." t nil) 2164 C-c C-e message-elide-region (elide the text between point and mark).
2165 C-c C-r message-caesar-buffer-body (rot13 the message body)." t nil)
2187 2166
2188 (autoload 'message-mail "message" "\ 2167 (autoload 'message-mail "message" "\
2189 Start editing a mail message to be sent." t nil) 2168 Start editing a mail message to be sent." t nil)
2190 2169
2191 (autoload 'message-news "message" "\ 2170 (autoload 'message-news "message" "\
2192 Start editing a news article to be sent." t nil) 2171 Start editing a news article to be sent." t nil)
2193 2172
2194 (autoload 'message-reply "message" "\ 2173 (autoload 'message-reply "message" "\
2195 Start editing a reply to the article in the current buffer." t nil) 2174 Start editing a reply to the article in the current buffer." t nil)
2196 2175
2197 (autoload 'message-wide-reply "message" nil t nil) 2176 (autoload 'message-wide-reply "message" "\
2198 2177 Make a \"wide\" reply to the message in the current buffer." t nil)
2199 (autoload 'message-followup "message" nil t nil) 2178
2179 (autoload 'message-followup "message" "\
2180 Follow up to the message in the current buffer.
2181 If TO-NEWSGROUPS, use that as the new Newsgroups line." t nil)
2200 2182
2201 (autoload 'message-cancel-news "message" "\ 2183 (autoload 'message-cancel-news "message" "\
2202 Cancel an article you posted." t nil) 2184 Cancel an article you posted." t nil)
2203 2185
2204 (autoload 'message-supersede "message" "\ 2186 (autoload 'message-supersede "message" "\
2245 Called from program, takes two arguments START and END 2227 Called from program, takes two arguments START and END
2246 which specify the range to operate on." t nil) 2228 which specify the range to operate on." t nil)
2247 2229
2248 ;;;*** 2230 ;;;***
2249 2231
2232 ;;;### (autoloads nil "messcompat" "gnus/messcompat.el")
2233
2234 (defvar message-signature-file mail-signature-file "\
2235 *File containing the text inserted at end of message. buffer.")
2236
2237 ;;;***
2238
2239 ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el")
2240
2241 (autoload 'nndoc-add-type "nndoc" "\
2242 Add document DEFINITION to the list of nndoc document definitions.
2243 If POSITION is nil or `last', the definition will be added
2244 as the last checked definition, if t or `first', add as the
2245 first definition, and if any other symbol, add after that
2246 symbol in the alist." nil nil)
2247
2248 ;;;***
2249
2250 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el") 2250 ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el")
2251 2251
2252 (autoload 'nnfolder-generate-active-file "nnfolder" "\ 2252 (autoload 'nnfolder-generate-active-file "nnfolder" "\
2253 Look for mbox folders in the nnfolder directory and make them into groups." t nil) 2253 Look for mbox folders in the nnfolder directory and make them into groups." t nil)
2254 2254
2332 (autoload 'html-view-goto-url "html-view" "\ 2332 (autoload 'html-view-goto-url "html-view" "\
2333 Goto an URL in Mosaic." t nil) 2333 Goto an URL in Mosaic." t nil)
2334 2334
2335 (autoload 'html-view-get-display "html-view" "\ 2335 (autoload 'html-view-get-display "html-view" "\
2336 Get the display for Mosaic." t nil) 2336 Get the display for Mosaic." t nil)
2337
2338 ;;;***
2339
2340 ;;;### (autoloads (tmpl-insert-template-file tmpl-insert-template-file-from-fixed-dirs tmpl-expand-templates-in-buffer tmpl-expand-templates-in-region) "tmpl-minor-mode" "hm--html-menus/tmpl-minor-mode.el")
2341
2342 (autoload 'tmpl-expand-templates-in-region "tmpl-minor-mode" "\
2343 Expand the templates in the region from BEGIN to END.
2344 If BEGIN and and are nil, then the current region is used." t nil)
2345
2346 (autoload 'tmpl-expand-templates-in-buffer "tmpl-minor-mode" "\
2347 Expand all templates in the current buffer." t nil)
2348
2349 (autoload 'tmpl-insert-template-file-from-fixed-dirs "tmpl-minor-mode" "\
2350 Inserts a template FILE and expands it, if `tmpl-automatic-expand' is t.
2351 This command tries to read the template file from a list of
2352 predefined directries (look at `tmpl-template-dir-list') and it filters
2353 the contents of this directories with the regular expression
2354 `tmpl-filter-regexp' (look also at this variable).
2355 The command uses a history variable, which could be changed with the
2356 variable `tmpl-history-variable-name'.
2357
2358 The user of the command is able to change interactive to another
2359 directory by entering at first the string \"Change the directory\".
2360 This maybe to difficult for the user. Therefore another command
2361 called `tmpl-insert-template-file' exist, which doesn't use fixed
2362 directories and filters." t nil)
2363
2364 (autoload 'tmpl-insert-template-file "tmpl-minor-mode" "\
2365 Insert a template FILE and expand it, if `tmpl-automatic-expand' is t.
2366 Look also at `tmpl-template-dir-list', to specify a default template directory.
2367 You should also take a look at `tmpl-insert-template-file-from-fixed-dirs'
2368 which has additional advantages (and disadvantages :-).
2369
2370 ATTENTION: The interface of this function has changed. The old
2371 function had the argument list (&optional TEMPLATE-DIR AUTOMATIC-EXPAND).
2372 The variables `tmpl-template-dir-list' and `tmpl-automatic-expand' must
2373 now be used instead of the args TEMPLATE-DIR and AUTOMATIC-EXPAND." t nil)
2337 2374
2338 ;;;*** 2375 ;;;***
2339 2376
2340 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el") 2377 ;;;### (autoloads (hmail:compose) "hmail" "hyperbole/hmail.el")
2341 2378
3657 ;;;*** 3694 ;;;***
3658 3695
3659 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") 3696 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el")
3660 3697
3661 (autoload 'ksh-mode "ksh-mode" "\ 3698 (autoload 'ksh-mode "ksh-mode" "\
3662 ksh-mode $Revision: 1.7 $ - Major mode for editing (Bourne, Korn or Bourne again) 3699 ksh-mode $Revision: 1.8 $ - Major mode for editing (Bourne, Korn or Bourne again)
3663 shell scripts. 3700 shell scripts.
3664 Special key bindings and commands: 3701 Special key bindings and commands:
3665 \\{ksh-mode-map} 3702 \\{ksh-mode-map}
3666 Variables controlling indentation style: 3703 Variables controlling indentation style:
3667 ksh-indent 3704 ksh-indent
4951 This counts from bottom if ARG is negative. The associated window 4988 This counts from bottom if ARG is negative. The associated window
4952 gets scrolled to the same line." t nil) 4989 gets scrolled to the same line." t nil)
4953 4990
4954 ;;;*** 4991 ;;;***
4955 4992
4993 ;;;### (autoloads (verilog-mode) "verilog-mode" "modes/verilog-mode.el")
4994
4995 (autoload 'verilog-mode "verilog-mode" "\
4996 Major mode for editing Verilog code. \\<verilog-mode-map>
4997 NEWLINE, TAB indents for Verilog code.
4998 Delete converts tabs to spaces as it moves back.
4999 Supports highlighting.
5000
5001 Variables controlling indentation/edit style:
5002
5003 verilog-indent-level (default 3)
5004 Indentation of Verilog statements with respect to containing block.
5005 verilog-cexp-indent (default 1)
5006 Indentation of Verilog statements broken across lines.
5007 verilog-case-indent (default 2)
5008 Indentation for case statements.
5009 verilog-auto-newline (default nil)
5010 Non-nil means automatically newline after simcolons and the punctation mark
5011 after an end.
5012 verilog-auto-indent-on-newline (default t)
5013 Non-nil means automatically indent line after newline
5014 verilog-tab-always-indent (default t)
5015 Non-nil means TAB in Verilog mode should always reindent the current line,
5016 regardless of where in the line point is when the TAB command is used.
5017 verilog-indent-begin-after-if (default t)
5018 Non-nil means to indent begin statements following a preceeding
5019 if, else, while, for and repeat statements, if any. otherwise,
5020 the begin is lined up with the preceeding token. If t, you get:
5021 if (a)
5022 begin
5023 otherwise you get:
5024 if (a)
5025 begin
5026 verilog-auto-endcomments (default t)
5027 Non-nil means a comment /* ... */ is set after the ends which ends cases, tasks, functions and modules.
5028 The type and name of the object will be set between the braces.
5029 verilog-auto-lineup (default `(all))
5030 List of contexts where auto lineup of :'s or ='s should be done.
5031
5032 Turning on Verilog mode calls the value of the variable verilog-mode-hook with
5033 no args, if that value is non-nil.
5034 Other useful functions are:
5035 \\[verilog-complete-word] -complete word with appropriate possibilities (functions, verilog keywords...)
5036 \\[verilog-comment-area] - Put marked area in a comment, fixing nested comments.
5037 \\[verilog-uncomment-area] - Uncomment an area commented with \\[verilog-comment-area].
5038 \\[verilog-insert-block] - insert begin ... end;
5039 \\[verilog-star-comment] - insert /* ... */
5040 \\[verilog-mark-defun] - Mark function.
5041 \\[verilog-beg-of-defun] - Move to beginning of current function.
5042 \\[verilog-end-of-defun] - Move to end of current function.
5043 \\[verilog-label-be] - Label matching begin ... end, fork ... join and case ... endcase statements;
5044 " t nil)
5045
5046 ;;;***
5047
4956 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") 5048 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el")
4957 5049
4958 (autoload 'vhdl-mode "vhdl-mode" "\ 5050 (autoload 'vhdl-mode "vhdl-mode" "\
4959 Major mode for editing VHDL code. 5051 Major mode for editing VHDL code.
4960 vhdl-mode $Revision: 1.7 $ 5052 vhdl-mode $Revision: 1.8 $
4961 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a 5053 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a
4962 vhdl-mode buffer. This automatically sets up a mail buffer with version 5054 vhdl-mode buffer. This automatically sets up a mail buffer with version
4963 information already added. You just need to add a description of the 5055 information already added. You just need to add a description of the
4964 problem, including a reproducable test case and send the message. 5056 problem, including a reproducable test case and send the message.
4965 5057
6071 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad. 6163 Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad.
6072 6164
6073 Various methods of control are provided for the Font Lock cache. In general, 6165 Various methods of control are provided for the Font Lock cache. In general,
6074 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'. 6166 see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'.
6075 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events', 6167 For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events',
6076 `fast-lock-save-others' and `fast-lock-save-faces'. 6168 `fast-lock-save-others' and `fast-lock-save-faces'." t nil)
6077
6078 Use \\[fast-lock-submit-bug-report] to send bug reports or feedback." t nil)
6079 6169
6080 (autoload 'turn-on-fast-lock "fast-lock" "\ 6170 (autoload 'turn-on-fast-lock "fast-lock" "\
6081 Unconditionally turn on Fast Lock mode." nil nil) 6171 Unconditionally turn on Fast Lock mode." nil nil)
6082 6172
6083 (if (fboundp 'add-minor-mode) (add-minor-mode 'fast-lock-mode nil)) 6173 (if (fboundp 'add-minor-mode) (add-minor-mode 'fast-lock-mode nil))
7529 Otherwise, find log entries for all registered files in the default directory. 7619 Otherwise, find log entries for all registered files in the default directory.
7530 From a program, any arguments are passed to the `rcs2log' script." t nil) 7620 From a program, any arguments are passed to the `rcs2log' script." t nil)
7531 7621
7532 ;;;*** 7622 ;;;***
7533 7623
7624 ;;;### (autoloads (webjump) "webjump" "packages/webjump.el")
7625
7626 (autoload 'webjump "webjump" "\
7627 Jumps to a Web site from a programmable hotlist.
7628
7629 See the documentation for the `webjump-sites' variable for how to customize the
7630 hotlist.
7631
7632 Feedback on WebJump can be sent to the author, Neil W. Van Dyke <nwv@acm.org>,
7633 or submitted via `\\[webjump-submit-bug-report]'. The latest version can be
7634 gotten from `http://www.cs.brown.edu/people/nwv/'." t nil)
7635
7636 ;;;***
7637
7534 ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el") 7638 ;;;### (autoloads (webster-spell webster-endings webster) "webster" "packages/webster.el")
7535 7639
7536 (autoload 'webster "webster" "\ 7640 (autoload 'webster "webster" "\
7537 Look up a word in the Webster's dictionary. 7641 Look up a word in the Webster's dictionary.
7538 Open a network login connection to a webster host if necessary. 7642 Open a network login connection to a webster host if necessary.
7708 7812
7709 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el") 7813 ;;;### (autoloads nil "loaddefs" "prim/loaddefs.el")
7710 7814
7711 ;;;*** 7815 ;;;***
7712 7816
7713 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "prim/macros.el") 7817 ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query name-last-kbd-macro) "macros" "prim/macros.el")
7714 7818
7715 (autoload 'name-last-kbd-macro "macros" "\ 7819 (autoload 'name-last-kbd-macro "macros" "\
7716 Assign a name to the last keyboard macro defined. 7820 Assign a name to the last keyboard macro defined.
7717 Argument SYMBOL is the name to define. 7821 Argument SYMBOL is the name to define.
7718 The symbol's function definition becomes the keyboard macro string. 7822 The symbol's function definition becomes the keyboard macro string.
7719 Such a \"function\" cannot be called from Lisp, but it is a valid 7823 Such a \"function\" cannot be called from Lisp, but it is a valid
7720 editor command." t nil) 7824 editor command." t nil)
7721
7722 (autoload 'insert-kbd-macro "macros" "\
7723 Insert in buffer the definition of kbd macro NAME, as Lisp code.
7724 Optional second argument KEYS means also record the keys it is on
7725 \(this is the prefix argument, when calling interactively).
7726
7727 This Lisp code will, when executed, define the kbd macro with the
7728 same definition it has now. If you say to record the keys,
7729 the Lisp code will also rebind those keys to the macro.
7730 Only global key bindings are recorded since executing this Lisp code
7731 always makes global bindings.
7732
7733 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
7734 use this command, and then save the file." t nil)
7735 7825
7736 (autoload 'kbd-macro-query "macros" "\ 7826 (autoload 'kbd-macro-query "macros" "\
7737 Query user during kbd macro execution. 7827 Query user during kbd macro execution.
7738 With prefix argument, enters recursive edit, 7828 With prefix argument, enters recursive edit,
7739 reading keyboard commands even within a kbd macro. 7829 reading keyboard commands even within a kbd macro.
8028 (or sound-alist (setq sound-alist '((ready nil) (warp nil)))) 8118 (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
8029 8119
8030 (autoload 'load-sound-file "sound" "\ 8120 (autoload 'load-sound-file "sound" "\
8031 Read in an audio-file and add it to the sound-alist. 8121 Read in an audio-file and add it to the sound-alist.
8032 8122
8033 You can only play sound files if you are running on display 0 of the console 8123 You can only play sound files if you are running on display 0 of the
8034 of a Sun SparcStation, SGI machine, or HP9000s700, or running a NetAudio 8124 console of a machine with native sound support or running a NetAudio
8035 server. The sound file must be in the Sun/NeXT U-LAW format." t nil) 8125 server and XEmacs has the necessary sound support compiled in.
8126
8127 The sound file must be in the Sun/NeXT U-LAW format." t nil)
8036 8128
8037 (autoload 'load-default-sounds "sound" "\ 8129 (autoload 'load-default-sounds "sound" "\
8038 Load and install some sound files as beep-types. 8130 Load and install some sound files as beep-types.
8039 This only works if you're on display 0 of a Sun SparcStation, SGI machine, 8131 This only works if you're on display 0 of a Sun SparcStation, SGI machine,
8040 or HP9000s700, or running a NetAudio server." t nil) 8132 or HP9000s700, or running a NetAudio server." t nil)
8718 menu item in the top-level menu. The cdr of the submenu list 8810 menu item in the top-level menu. The cdr of the submenu list
8719 is a list of menu items, as above." nil 'macro) 8811 is a list of menu items, as above." nil 'macro)
8720 8812
8721 ;;;*** 8813 ;;;***
8722 8814
8815 ;;;### (autoloads (insert-kbd-macro format-kbd-macro read-kbd-macro edit-named-kbd-macro edit-last-kbd-macro edit-kbd-macro) "edmacro" "utils/edmacro.el")
8816
8817 (define-key ctl-x-map "\C-k" 'edit-kbd-macro)
8818
8819 (defvar edmacro-eight-bits nil "\
8820 *Non-nil if edit-kbd-macro should leave 8-bit characters intact.
8821 Default nil means to write characters above \\177 in octal notation.")
8822
8823 (autoload 'edit-kbd-macro "edmacro" "\
8824 Edit a keyboard macro.
8825 At the prompt, type any key sequence which is bound to a keyboard macro.
8826 Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
8827 the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
8828 its command name.
8829 With a prefix argument, format the macro in a more concise way." t nil)
8830
8831 (autoload 'edit-last-kbd-macro "edmacro" "\
8832 Edit the most recently defined keyboard macro." t nil)
8833
8834 (autoload 'edit-named-kbd-macro "edmacro" "\
8835 Edit a keyboard macro which has been given a name by `name-last-kbd-macro'." t nil)
8836
8837 (autoload 'read-kbd-macro "edmacro" "\
8838 Read the region as a keyboard macro definition.
8839 The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
8840 See documentation for `edmacro-mode' for details.
8841 Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored.
8842 The resulting macro is installed as the \"current\" keyboard macro.
8843
8844 In Lisp, may also be called with a single STRING argument in which case
8845 the result is returned rather than being installed as the current macro.
8846 The result will be a string if possible, otherwise an event vector.
8847 Second argument NEED-VECTOR means to return an event vector always." t nil)
8848
8849 (autoload 'format-kbd-macro "edmacro" "\
8850 Return the keyboard macro MACRO as a human-readable string.
8851 This string is suitable for passing to `read-kbd-macro'.
8852 Second argument VERBOSE means to put one command per line with comments.
8853 If VERBOSE is `1', put everything on one line. If VERBOSE is omitted
8854 or nil, use a compact 80-column format." nil nil)
8855
8856 (autoload 'insert-kbd-macro "edmacro" "\
8857 Insert in buffer the definition of kbd macro NAME, as Lisp code.
8858 Optional second arg KEYS means also record the keys it is on
8859 \(this is the prefix argument, when calling interactively).
8860
8861 This Lisp code will, when executed, define the kbd macro with the same
8862 definition it has now. If you say to record the keys, the Lisp code
8863 will also rebind those keys to the macro. Only global key bindings
8864 are recorded since executing this Lisp code always makes global
8865 bindings.
8866
8867 To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
8868 use this command, and then save the file." t nil)
8869
8870 ;;;***
8871
8872 ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode) "eldoc" "utils/eldoc.el")
8873
8874 (defvar eldoc-mode nil "\
8875 *If non-nil, show the defined parameters for the elisp function near point.
8876
8877 For the emacs lisp function at the beginning of the sexp which point is
8878 within, show the defined parameters for the function in the echo area.
8879 This information is extracted directly from the function or macro if it is
8880 in pure lisp. If the emacs function is a subr, the parameters are obtained
8881 from the documentation string if possible.
8882
8883 If point is over a documented variable, print that variable's docstring
8884 instead.
8885
8886 This variable is buffer-local.")
8887
8888 (autoload 'eldoc-mode "eldoc" "\
8889 *Enable or disable eldoc mode.
8890 See documentation for the variable of the same name for more details.
8891
8892 If called interactively with no prefix argument, toggle current condition
8893 of the mode.
8894 If called with a positive or negative prefix argument, enable or disable
8895 the mode, respectively." t nil)
8896
8897 (autoload 'turn-on-eldoc-mode "eldoc" "\
8898 Unequivocally turn on eldoc-mode (see variable documentation)." t nil)
8899
8900 ;;;***
8901
8723 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el") 8902 ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "utils/elp.el")
8724 8903
8725 (autoload 'elp-instrument-function "elp" "\ 8904 (autoload 'elp-instrument-function "elp" "\
8726 Instrument FUNSYM for profiling. 8905 Instrument FUNSYM for profiling.
8727 FUNSYM must be a symbol of a defined function." t nil) 8906 FUNSYM must be a symbol of a defined function." t nil)
8846 (autoload 'list-colors-display "facemenu" "\ 9025 (autoload 'list-colors-display "facemenu" "\
8847 Display names of defined colors, and show what they look like. 9026 Display names of defined colors, and show what they look like.
8848 If the optional argument LIST is non-nil, it should be a list of 9027 If the optional argument LIST is non-nil, it should be a list of
8849 colors to display. Otherwise, this command computes a list 9028 colors to display. Otherwise, this command computes a list
8850 of colors that the current display can handle." t nil) 9029 of colors that the current display can handle." t nil)
9030
9031 ;;;***
9032
9033 ;;;### (autoloads (floating-toolbar-from-extent-or-popup-mode-menu floating-toolbar-or-popup-mode-menu floating-toolbar) "floating-toolbar" "utils/floating-toolbar.el")
9034
9035 (autoload 'floating-toolbar "floating-toolbar" "\
9036 Popup a toolbar near the current mouse position.
9037 The toolbar instantiator used is taken from the 'floating-toolbar
9038 property of any extent under the mouse. If no such non-nil
9039 property exists for any extent under the mouse, then the value of the
9040 variable `floating-toolbar' is checked. If its value si nil, then
9041 no toolbar will be displayed.
9042
9043 This command should be bound to a button press event.
9044
9045 When called from a program, first arg EVENT should be the button
9046 press event. Optional second arg EXTENT-LOCAL-ONLY specifies
9047 that only extent local toolbars should be used; this means the
9048 `floating-toolbar' variable will not be consulted." t nil)
9049
9050 (autoload 'floating-toolbar-or-popup-mode-menu "floating-toolbar" "\
9051 Like floating-toolbar, but if no toolbar is displayed
9052 run popup-mode-menu." t nil)
9053
9054 (autoload 'floating-toolbar-from-extent-or-popup-mode-menu "floating-toolbar" "\
9055 Like floating-toolbar-or-popup-mode-menu, but search only for an
9056 extent local toolbar." t nil)
8851 9057
8852 ;;;*** 9058 ;;;***
8853 9059
8854 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el") 9060 ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "utils/flow-ctrl.el")
8855 9061
9494 ;;;### (autoloads (w3-follow-link w3-follow-link-other-frame w3-do-setup w3 w3-preview-this-buffer w3-batch-fetch w3-follow-url-at-point w3-follow-url-at-point-other-frame w3-maybe-follow-link w3-maybe-follow-link-mouse w3-fetch w3-fetch-other-frame w3-find-file w3-open-local) "w3" "w3/w3.el") 9700 ;;;### (autoloads (w3-follow-link w3-follow-link-other-frame w3-do-setup w3 w3-preview-this-buffer w3-batch-fetch w3-follow-url-at-point w3-follow-url-at-point-other-frame w3-maybe-follow-link w3-maybe-follow-link-mouse w3-fetch w3-fetch-other-frame w3-find-file w3-open-local) "w3" "w3/w3.el")
9495 9701
9496 (autoload 'w3-open-local "w3" "\ 9702 (autoload 'w3-open-local "w3" "\
9497 Find a local file, and interpret it as a hypertext document. 9703 Find a local file, and interpret it as a hypertext document.
9498 It will prompt for an existing file or directory, and retrieve it as a 9704 It will prompt for an existing file or directory, and retrieve it as a
9499 hypertext document. If it is a directory, and url-use-hypertext-dired 9705 hypertext document." t nil)
9500 is non-nil, then an HTML directory listing is created on the fly.
9501 Otherwise, dired-mode is used to visit the buffer." t nil)
9502 9706
9503 (autoload 'w3-find-file "w3" "\ 9707 (autoload 'w3-find-file "w3" "\
9504 Find a local file, and interpret it as a hypertext document. 9708 Find a local file, and interpret it as a hypertext document.
9505 It will prompt for an existing file or directory, and retrieve it as a 9709 It will prompt for an existing file or directory, and retrieve it as a
9506 hypertext document. If it is a directory, and url-use-hypertext-dired 9710 hypertext document." t nil)
9507 is non-nil, then an HTML directory listing is created on the fly.
9508 Otherwise, dired-mode is used to visit the buffer." t nil)
9509 9711
9510 (autoload 'w3-fetch-other-frame "w3" "\ 9712 (autoload 'w3-fetch-other-frame "w3" "\
9511 Attempt to follow the hypertext reference under point in a new frame. 9713 Attempt to follow the hypertext reference under point in a new frame.
9512 With prefix-arg P, ignore viewers and dump the link straight 9714 With prefix-arg P, ignore viewers and dump the link straight
9513 to disk." t nil) 9715 to disk." t nil)
9574 With prefix-arg P, ignore viewers and dump the link straight 9776 With prefix-arg P, ignore viewers and dump the link straight
9575 to disk." t nil) 9777 to disk." t nil)
9576 9778
9577 ;;;*** 9779 ;;;***
9578 9780
9579 ;;;### (autoloads (widget-delete widget-create) "widget-edit" "w3/widget-edit.el")
9580
9581 (autoload 'widget-create "widget-edit" "\
9582 Create widget of TYPE.
9583 The optional ARGS are additional keyword arguments." nil nil)
9584
9585 (autoload 'widget-delete "widget-edit" "\
9586 Delete WIDGET." nil nil)
9587
9588 ;;;***
9589
9590 ;;;### (autoloads (define-widget) "widget" "w3/widget.el")
9591
9592 (autoload 'define-widget "widget" "\
9593 Define a new widget type named NAME from CLASS.
9594
9595 NAME and CLASS should both be symbols, CLASS should be one of the
9596 existing widget types, or nil to create the widget from scratch.
9597
9598 After the new widget has been defined, the following two calls will
9599 create identical widgets:
9600
9601 * (widget-create NAME)
9602
9603 * (apply 'widget-create CLASS ARGS)
9604
9605 The third argument DOC is a documentation string for the widget." nil nil)
9606
9607 ;;;***
9608
9609 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "x11/x-font-menu.el") 9781 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "x11/x-font-menu.el")
9610 9782
9611 (defvar font-menu-ignore-scaled-fonts t "\ 9783 (defvar font-menu-ignore-scaled-fonts t "\
9612 *If non-nil, then the font menu will try to show only bitmap fonts.") 9784 *If non-nil, then the font menu will try to show only bitmap fonts.")
9613 9785