aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c
index d45c8d70ce5..ca9111f2e47 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,5 +1,5 @@
1/* Buffer manipulation primitives for GNU Emacs. 1/* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985,86,87,88,89,93,94,95,97,98, 1999, 2000, 2001, 2002 2 Copyright (C) 1985,86,87,88,89,93,94,95,97,98, 1999, 2000, 2001, 02, 2003
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -1661,9 +1661,9 @@ do not put this buffer at the front of the list of recently selected ones. */)
1661 } 1661 }
1662 Fset_buffer (buf); 1662 Fset_buffer (buf);
1663 if (NILP (norecord)) 1663 if (NILP (norecord))
1664 /* This seems bogus since Fselect_window will call record_buffer anyway. */ 1664 /* Why bother ? Fselect_window will do it for us anyway. -stef */
1665 record_buffer (buf); 1665 record_buffer (buf);
1666 Fselect_window (Fdisplay_buffer (buf, other_window, Qnil)); 1666 Fselect_window (Fdisplay_buffer (buf, other_window, Qnil), norecord);
1667 return buf; 1667 return buf;
1668} 1668}
1669 1669