Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e224699a
Commit
e224699a
authored
Oct 20, 2008
by
Eli Zaretskii
Browse files
Fix last change.
parent
ab8dad36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lisp/subr.el
lisp/subr.el
+5
-3
No files found.
lisp/subr.el
View file @
e224699a
...
@@ -25,9 +25,6 @@
...
@@ -25,9 +25,6 @@
;;; Code:
;;; Code:
;; This is for lexical-let in apply-partially.
(
eval-when-compile
(
require
'cl
))
(
defvar
custom-declare-variable-list
nil
(
defvar
custom-declare-variable-list
nil
"Record `defcustom' calls made before `custom.el' is loaded to handle them.
"Record `defcustom' calls made before `custom.el' is loaded to handle them.
Each element of this list holds the arguments to one call to `defcustom'."
)
Each element of this list holds the arguments to one call to `defcustom'."
)
...
@@ -74,6 +71,11 @@ the end of FILE must be all on the same line. For example:
...
@@ -74,6 +71,11 @@ the end of FILE must be all on the same line. For example:
For more information, see Info node `elisp(Declaring Functions)'."
For more information, see Info node `elisp(Declaring Functions)'."
;; Does nothing - byte-compile-declare-function does the work.
;; Does nothing - byte-compile-declare-function does the work.
nil
)
nil
)
;; This is for lexical-let in apply-partially. It is here because cl
;; needs declare-function, defined above.
(
eval-when-compile
(
require
'cl
))
;;;; Basic Lisp macros.
;;;; Basic Lisp macros.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment