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
f2d9e61d
Commit
f2d9e61d
authored
Mar 22, 1995
by
Karl Heuer
Browse files
(ml-concat): New function.
parent
bdafb772
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
lisp/emulation/mlsupport.el
lisp/emulation/mlsupport.el
+10
-0
No files found.
lisp/emulation/mlsupport.el
View file @
f2d9e61d
...
...
@@ -419,6 +419,16 @@
(
if
(
<
to
0
)
(
setq
to
(
+
to
length
)))
(
substring
string
from
(
+
from
to
))))
(
defun
ml-concat
(
&rest
args
)
(
let
((
newargs
nil
)
this
)
(
while
args
(
setq
this
(
car
args
))
(
if
(
numberp
this
)
(
setq
this
(
number-to-string
this
)))
(
setq
newargs
(
cons
this
newargs
)
args
(
cdr
args
)))
(
apply
'concat
(
nreverse
newargs
))))
(
provide
'mlsupport
)
;;; mlsupport.el ends here
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