aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorMiles Bader2006-01-16 08:37:27 +0000
committerMiles Bader2006-01-16 08:37:27 +0000
commit41882805d6711e32ac0f066119226d84dbdedc13 (patch)
tree44f756cef3fbc4de2f229e93613a1a326da7f55d /src/buffer.c
parent6a2bd1a5019d2130c87ac5cf17f1322bf614b624 (diff)
parent28f74fdf77eaab2e9daf54e2d5b0b729c5201e4f (diff)
downloademacs-41882805d6711e32ac0f066119226d84dbdedc13.tar.gz
emacs-41882805d6711e32ac0f066119226d84dbdedc13.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 616-696) - Add lisp/mh-e/.arch-inventory - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords. - lisp/gnus/ChangeLog: Remove duplicate entry * gnus--rel--5.10 (patch 147-181) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS: texi/message.texi: Fix default values. - Update from CVS: texi/gnus.texi (RSS): Addition.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 2c02ffacc1d..adcd03127da 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1360,7 +1360,8 @@ with SIGHUP. */)
1360 /* First run the query functions; if any query is answered no, 1360 /* First run the query functions; if any query is answered no,
1361 don't kill the buffer. */ 1361 don't kill the buffer. */
1362 arglist[0] = Qkill_buffer_query_functions; 1362 arglist[0] = Qkill_buffer_query_functions;
1363 if (NILP (Frun_hook_with_args_until_failure (1, arglist))) 1363 tem = Frun_hook_with_args_until_failure (1, arglist);
1364 if (NILP (tem))
1364 return unbind_to (count, Qnil); 1365 return unbind_to (count, Qnil);
1365 1366
1366 /* Then run the hooks. */ 1367 /* Then run the hooks. */
@@ -1723,9 +1724,6 @@ do not put this buffer at the front of the list of recently selected ones. */)
1723 } 1724 }
1724 } 1725 }
1725 Fset_buffer (buf); 1726 Fset_buffer (buf);
1726 if (NILP (norecord))
1727 /* Why bother ? Fselect_window will do it for us anyway. -stef */
1728 record_buffer (buf);
1729 Fselect_window (Fdisplay_buffer (buf, other_window, Qnil), norecord); 1727 Fselect_window (Fdisplay_buffer (buf, other_window, Qnil), norecord);
1730 return buf; 1728 return buf;
1731} 1729}