annotate lisp/loaddefs.el @ 272:c5d627a313b1 r21-0b34

Import from CVS: tag r21-0b34
author cvs
date Mon, 13 Aug 2007 10:28:48 +0200
parents 677f6a0ee643
children 8626e4521993
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1 ;;; loaddefs.el --- define standard autoloads of other files
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
2
229
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
3 ;; Copyright (C) 1985-7, 1992-5, 1997 Free Software Foundation, Inc.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
4
229
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
5 ;; Maintainer: XEmacs Development Team
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
6 ;; Keywords: internal
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
7
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
9
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
13 ;; any later version.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
14
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
18 ;; General Public License for more details.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
19
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
22 ;; Free Software Foundation, 59 Temple Place - Suite 330,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
24
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
25 ;;; Synched up with: Not synched with FSF.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
26
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
27 ;;; Commentary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
28
229
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
29 ;; The following commentary is completely out of date. I would like to
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
30 ;; delete it, but it serves as a useful reminder as to how things used to
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
31 ;; work.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
32
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
33 ;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
34 ;; Special formatting conventions are used in this file!
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
35
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
36 ;; a backslash-newline is used at the beginning of a documentation string
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
37 ;; when that string should be stored in the file lib-src/DOCnnn, not in core.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
38
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
39 ;; Such strings read into Lisp as numbers (during the pure-loading phase).
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
40
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
41 ;; But you must obey certain rules to make sure the string is understood
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
42 ;; and goes into lib-src/DOCnnn properly. Otherwise, the string will not go
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
43 ;; anywhere!
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
44
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
45 ;; The doc string must appear in the standard place in a call to
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
46 ;; defun, autoload, defvar or defconst. No Lisp macros are recognized.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
47 ;; The open-paren starting the definition must appear in column 0.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
48
229
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
49 ;; In defvar and defconst, there is an additional rule:
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
50 ;; The double-quote that starts the string must be on the same
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
51 ;; line as the defvar or defconst.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
52 ;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
53
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
54 ;; **********************************************************************
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
55 ;; You should never need to write autoloads by hand and put them here.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
56
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
57 ;; It is no longer necessary. Instead use autoload.el to maintain them
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
58 ;; for you. Just insert ";;;###autoload" before defuns or defmacros you
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
59 ;; want to be autoloaded, or other forms you want copied into loaddefs.el
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
60 ;; (defvars, key definitions, etc.). For example,
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
61 ;; ;;;###autoload
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
62 ;; (defun foobar () ....)
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
63 ;; ;;;###autoload (define-key global-map "f" 'foobar)
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
64 ;; ;;;###autoload
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
65 ;; (defvar foobar-var nil "\
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
66 ;; This is foobar-var's doc-string.")
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
67
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
68 ;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
69
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
70 ;; You can also use M-x update-directory-autoloads to update the autoloads
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
71 ;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
72 ;; update-autoloads-here to update the autoloads for each file that
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
73 ;; already has an autoload section in this file.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 209
diff changeset
74 ;; **********************************************************************
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
75
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
76
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
77 ;;; Code:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
78
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
79 ;; These variables are used by autoloadable packages.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
80 ;; They are defined here so that they do not get overridden
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
81 ;; by the loading of those packages.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
82
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
83
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
84 ;; Names in directory that end in one of these
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
85 ;; are ignored in completion,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
86 ;; making it more likely you will get a unique match.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
87 (setq completion-ignored-extensions
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
88 (mapcar 'purecopy
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
89 (if (eq system-type 'vax-vms)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
90 '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
91 ".dvi" ".toc" ".log" ".aux"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
92 ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
93 ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
94 '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
95 ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
96 ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 239
diff changeset
97 ".diff" ".oi" ".class"))))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
98
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
99
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
100 ;; This needs to be redone better. -slb
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
101 ;(setq debug-ignored-errors
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
102 ; '(beginning-of-line
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
103 ; beginning-of-buffer
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
104 ; end-of-line
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
105 ; end-of-buffer
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
106 ; end-of-file buffer-read-only
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
107 ; "\\`Previous command was not a yank\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
108 ; "\\`Minibuffer is not active for completion\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
109 ; "\\`No \\(following\\|preceding\\) item in .*-history\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
110 ; "\\`No recursive edit is in progress\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
111 ; "\\`Changes to be undone are outside visible portion of buffer\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
112 ; "\\`No further undo information\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
113 ; "\\`No undo information in this buffer\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
114 ; "\\`Buffer modified since last undo/redo, cannot redo"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
115 ; "\\`Save not confirmed\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
116 ; "\\`Canceled\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
117 ; "\\`\\(Revert\\|Steal\\|Recover-file\\) cancelled\\.\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
118
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
119 ; ;; comint
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
120 ; "\\`Not at command line\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
121 ; "\\`Empty input ring\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
122 ; "\\`No history\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
123 ; "\\`Not found\\'" ;; To common?
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
124 ; "\\`Current buffer has no process\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
125
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
126 ; ;; dabbrev
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
127 ; "\\`No \\(further \\)?dynamic expansion for .* found\\.?\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
128
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
129 ; ;; Completion
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
130 ; "\\`To complete, the point must be after a symbol at least [0-9]* character long\\.\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
131 ; "\\`The string \".*\" is too short to be saved as a completion\\.\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
132
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
133 ; ;; Compile
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
134 ; "\\`No more errors\\( yet\\|\\)\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
135
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
136 ; ;; Gnus
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
137 ; ;"\\`NNTP: Connection closed\\.\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
138
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
139 ; ;; info
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
140 ; "\\`Node has no Previous\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
141 ; "\\`No \".*\" in index\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
142
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
143 ; ;; imenu
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
144 ; ;"\\`No items suitable for an index found in this buffer\\.\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
145 ; ;"\\`The mode \".*\" does not take full advantage of imenu\\.el yet\\.\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
146
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
147 ; ;; ispell
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
148 ; "\\`No word found to check!\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
149
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
150 ; ;; man
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
151 ; "\\`.* not found\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
152 ; "\\`No more history\\.\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
153
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
154 ; ;; etags
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
155 ; "\\`File .* is not a valid tag table\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
156 ; "\\`File .* is not a valid tags file\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
157 ; "\\`All files processed\\.\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
158 ; "No TAGS file name supplied\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
159 ; "\\`Nothing to complete\\'"
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
160
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
161 ; ;; BBDB
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
162 ; "\\`no previous record\\'"
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 251
diff changeset
163 ; "\\`no next record\\'"))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
164
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
165 (make-variable-buffer-local 'indent-tabs-mode)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
166
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
167
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
168 ;;; Load in generated autoloads (made by autoload.el).
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
169
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
170 ;; (let ((dir load-path)
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
171 ;; purify-flag)
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
172 ;; (while dir
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
173 ;; (condition-case nil
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
174 ;; (load (concat (car dir) "auto-autoloads"))
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
175 ;; (t nil))
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 233
diff changeset
176 ;; (pop dir)))
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
177
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
178 ;;; Local Variables:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
179 ;;; no-byte-compile: t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
180 ;;; no-update-autoloads: t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
181 ;;; End:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
182 ;;; loaddefs.el ends here