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
179dade4
Commit
179dade4
authored
Apr 25, 2011
by
Paul Eggert
Browse files
Fix minor typos in previous change.
parent
eab3844f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/alloc.c
src/alloc.c
+1
-1
src/buffer.c
src/buffer.c
+1
-1
No files found.
src/alloc.c
View file @
179dade4
...
...
@@ -5361,7 +5361,7 @@ mark_object (Lisp_Object arg)
if
(
po
!=
&
buffer_defaults
&&
po
!=
&
buffer_local_symbols
)
{
struct
buffer
*
b
;
for
(
b
=
all_buffers
;
b
&&
b
!=
po
;
b
=
b
->
header
.
next
)
for
(
b
=
all_buffers
;
b
&&
b
!=
po
;
b
=
b
->
header
.
next
.
buffer
)
;
if
(
b
==
NULL
)
abort
();
...
...
src/buffer.c
View file @
179dade4
...
...
@@ -43,7 +43,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
struct
buffer
*
current_buffer
;
/* the current buffer */
/* First buffer in chain of all buffers (in reverse order of creation).
Threaded through ->header.next. */
Threaded through ->header.next.
buffer.
*/
struct
buffer
*
all_buffers
;
...
...
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