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
d5720b4c
Commit
d5720b4c
authored
Aug 26, 2010
by
Åukasz Stelmach
Committed by
Juanma Barranquero
Aug 26, 2010
Browse files
play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
parent
4f558297
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-1
lisp/play/cookie1.el
lisp/play/cookie1.el
+1
-1
No files found.
lisp/ChangeLog
View file @
d5720b4c
2010-08-26 Łukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl> (tiny change)
* play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
2010-08-26 Chong Yidong <cyd@stupidchicken.com>
* simple.el (beginning-of-buffer, end-of-buffer): Doc fix
...
...
@@ -36,7 +40,7 @@
2010-08-21 Leo <sdl.web@gmail.com>
Fix buffer-list rename&refresh after
after
killing a buffer in ido.
Fix buffer-list rename&refresh after killing a buffer in ido.
* lisp/ido.el: Revert Óscar's.
(ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
Remember the buffers at head, rather than their name.
...
...
lisp/play/cookie1.el
View file @
d5720b4c
...
...
@@ -138,7 +138,7 @@ Optional fifth arg REQUIRE-MATCH non-nil forces a matching cookie."
(
vec
(
cookie-snarf
phrase-file
startmsg
endmsg
))
(
i
(
length
vec
)))
(
while
(
>
(
setq
i
(
1-
i
))
0
)
(
while
(
>
=
(
setq
i
(
1-
i
))
0
)
(
setq
alist
(
cons
(
list
(
aref
vec
i
))
alist
)))
(
put
sym
'completion-alist
alist
))))
nil
require-match
nil
nil
))
...
...
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