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
f1a71c6e
Commit
f1a71c6e
authored
Aug 01, 2012
by
Andreas Schwab
Browse files
Fixes: debbugs:12108
* buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
parent
b2c7a106
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
lisp/ChangeLog
lisp/ChangeLog
+9
-4
lisp/buff-menu.el
lisp/buff-menu.el
+2
-1
No files found.
lisp/ChangeLog
View file @
f1a71c6e
2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
* buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
(Bug#12108)
2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
* calc-mode.el (calc-basic-simplification-mode): Rename from
...
...
lisp/buff-menu.el
View file @
f1a71c6e
...
...
@@ -564,7 +564,8 @@ means list those buffers and no others."
(
buffer
(
get-buffer-create
"*Buffer List*"
)))
(
with-current-buffer
buffer
(
Buffer-menu-mode
)
(
setq
Buffer-menu-files-only
(
and
files-only
(
>=
files-only
0
)))
(
setq
Buffer-menu-files-only
(
and
files-only
(
>=
(
prefix-numeric-value
files-only
)
0
)))
(
list-buffers--refresh
buffer-list
old-buffer
)
(
tabulated-list-print
))
buffer
))
...
...
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