From 2f74c84b7de292c8aea0f7c7ebe2c8043ee7f2ae Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 16 Jun 2003 18:54:23 +0000 Subject: (debug): Fix call to message. --- lisp/emacs-lisp/debug.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp/emacs-lisp/debug.el') diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index 43e4d781a77..f62b0c4836e 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -1,6 +1,6 @@ ;;; debug.el --- debuggers and related commands for Emacs -;; Copyright (C) 1985, 1986, 1994, 2001 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1986, 1994, 2001, 2003 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: lisp, tools, maint @@ -178,7 +178,7 @@ first will be printed into the backtrace buffer." (delete-region middlestart (point))) (insert "...\n")) (goto-char (point-min)) - (message (buffer-string)) + (message "%s" (buffer-string)) (kill-emacs)) (if (eq (car debugger-args) 'debug) ;; Skip the frames for backtrace-debug, byte-code, and debug. -- cgit v1.2.1