From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tim Cross Newsgroups: gmane.emacs.devel Subject: void function error in bidi-mode Date: Mon, 22 Aug 2011 11:11:16 +1000 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1313975486 8687 80.91.229.12 (22 Aug 2011 01:11:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 22 Aug 2011 01:11:26 +0000 (UTC) To: Emacs developers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 22 03:11:22 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QvJ2v-00050g-8P for ged-emacs-devel@m.gmane.org; Mon, 22 Aug 2011 03:11:21 +0200 Original-Received: from localhost ([::1]:60900 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvJ2u-0003UV-6p for ged-emacs-devel@m.gmane.org; Sun, 21 Aug 2011 21:11:20 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:34761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvJ2s-0003TR-2Y for emacs-devel@gnu.org; Sun, 21 Aug 2011 21:11:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QvJ2r-0005LU-7A for emacs-devel@gnu.org; Sun, 21 Aug 2011 21:11:18 -0400 Original-Received: from mail-iy0-f175.google.com ([209.85.210.175]:52086) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvJ2q-0005LK-W3 for emacs-devel@gnu.org; Sun, 21 Aug 2011 21:11:17 -0400 Original-Received: by iyn15 with SMTP id 15so7918967iyn.6 for ; Sun, 21 Aug 2011 18:11:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=+fy/YISlEWvPK0EEwXdhxpR7Mnmay3S9dd+d9iVd8fA=; b=REZJi8TjzBYVTBmhV9h2qK3zZ7CixLzN7IJHjYumzqcr4loNVW2aO2JmlItbtD5MIc BsHUC9jaGw06XpCAqfloZrl7vF7tRtuxRPzoqwdBKjsJbYj7DxspT4PRGjdWo89yF1Y+ EPkwOQ/IlsM6ou2B08eyNVGXTqff9B3tgWEek= Original-Received: by 10.231.83.135 with SMTP id f7mr4370275ibl.90.1313975476203; Sun, 21 Aug 2011 18:11:16 -0700 (PDT) Original-Received: by 10.231.37.77 with HTTP; Sun, 21 Aug 2011 18:11:16 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.210.175 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:143487 Archived-At: Hi Eli, I've logged a bug for this, but thought you might want to know about it sooner. Using the list-processes function generates the following backtrace iff you have any running processes Debugger entered--Lisp error: (void-function bidi-string-mark-left-to-right) bidi-string-mark-left-to-right("SQL") tabulated-list-print-entry(# ["SQL" "run" ("*SQL*" face link help-echo "Visit buffer `*SQL*'" follow-link t process-buffer # action process-menu-visit-buffer) "/dev/pts/4" "sqlplus urs/ursdev@unedev"]) apply(tabulated-list-print-entry (# ["SQL" "run" ("*SQL*" face link help-echo "Visit buffer `*SQL*'" follow-link t process-buffer # action process-menu-visit-buffer) "/dev/pts/4" "sqlplus urs/ursdev@unedev"])) tabulated-list-print() list-processes() call-interactively(list-processes t nil) execute-extended-command(nil) call-interactively(execute-extended-command nil nil) I produced this with the following emacs -Q set debug on error create a process. I used M-x sql-oracle to connect to a database Run M-x list-processes This is with emacs taken from bzr trunk this morning. Tim