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
6824727e
Commit
6824727e
authored
Nov 06, 2000
by
Dave Love
Browse files
(mm-uu-configure): Unquote lambda.
(mm-uu-configure-list): Doc fix.
parent
117b4b78
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
lisp/gnus/mm-uu.el
lisp/gnus/mm-uu.el
+11
-10
No files found.
lisp/gnus/mm-uu.el
View file @
6824727e
...
...
@@ -100,19 +100,20 @@ This can be either \"inline\" or \"attachment\".")
(
defun
mm-uu-configure
(
&optional
symbol
value
)
(
if
symbol
(
set-default
symbol
value
))
(
setq
mm-uu-begin-line
nil
)
(
mapcar
'
(
lambda
(
type
)
(
if
(
mm-uu-configure-p
type
'disabled
)
nil
(
setq
mm-uu-begin-line
(
concat
mm-uu-begin-line
(
if
mm-uu-begin-line
"\\|"
)
(
symbol-value
(
intern
(
concat
"mm-uu-"
(
symbol-name
type
)
"-begin-line"
)))))))
(
mapcar
(
lambda
(
type
)
(
if
(
mm-uu-configure-p
type
'disabled
)
nil
(
setq
mm-uu-begin-line
(
concat
mm-uu-begin-line
(
if
mm-uu-begin-line
"\\|"
)
(
symbol-value
(
intern
(
concat
"mm-uu-"
(
symbol-name
type
)
"-begin-line"
)))))))
'
(
uu
postscript
binhex
shar
forward
)))
;; Needs to come after mm-uu-configure.
(
defcustom
mm-uu-configure-list
nil
"A
list of mm-uu configuration.
"Alist of mm-uu configuration
s to disable
.
To disable dissecting shar codes, for instance, add
`(shar . disabled)' to this list."
:type
'
(
repeat
(
choice
(
const
:tag
"postscript"
(
postscript
.
disabled
))
...
...
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