Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
dbe89b2e
Commit
dbe89b2e
authored
Aug 30, 2000
by
David Byers
Browse files
Forgot argument to mapcar in lyskom-maybe-frob-completion-table.
parent
9eefeabb
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/ChangeLog
View file @
dbe89b2e
2000-08-30 David Byers <davby@ida.liu.se>
* utilities.el (lyskom-maybe-frob-completion-table): Added missing
table argument.
2000-08-29 Joel Rosdahl <joel@lysator.liu.se>
* Makefile (debian-build): Use new Makefile target.
...
...
src/distribution-Makefile
View file @
dbe89b2e
...
...
@@ -108,7 +108,7 @@ lyskom-@@CLIENTVERSION@@.el: $(HEADER) $(SOURCES)
install: lyskom-@@CLIENTVERSION@@.elc
cp lyskom-@@CLIENTVERSION@@.el lyskom-@@CLIENTVERSION@@.elc $(LISPDIR)
ln -s $(LISPDIR)/lyskom-@@CLIENTVERSION@@.elc $(LISPDIR)/lyskom.elc
ln -s
f
$(LISPDIR)/lyskom-@@CLIENTVERSION@@.elc $(LISPDIR)/lyskom.elc
clean:
$(RM) lyskom-@@CLIENTVERSION@@.el
...
...
src/utilities.el
View file @
dbe89b2e
...
...
@@ -328,7 +328,8 @@ is non-nil."
(
cond
(
enable-multibyte-characters
table
)
(
copy
(
mapcar
(
lambda
(
el
)
(
cons
(
lyskom-maybe-recode-string
(
car
el
))
(
cdr
el
)))))
(
cdr
el
)))
table
))
(
t
(
lyskom-traverse
el
table
(
setcar
el
(
lyskom-maybe-recode-string
(
car
el
))))
table
)))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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