[Lldb-commits] [lldb] r126449 - /lldb/trunk/utils/emacs/README

Johnny Chen johnny.chen at apple.com
Thu Feb 24 15:13:29 PST 2011


Author: johnny
Date: Thu Feb 24 17:13:28 2011
New Revision: 126449

URL: http://llvm.org/viewvc/llvm-project?rev=126449&view=rev
Log:
The lldb-enhanced gud.el does not work on emacs 22.1.1 (dumb terminal).
This is the error I got:

Debugger entered--Lisp error: (void-function split-string-and-unquote)
  (split-string-and-unquote command-line)
  (let* ((words ...) (program ...) (dir default-directory) (file-word ...) (file-subst ...) (args ...) (file ...) (filepart ...) (existing-buffer ...)) (pop-to$
  gud-common-init("/Volumes/data/lldb/svn/trunk/build/Debug/lldb" nil gud-lldb-marker-filter)
  lldb("/Volumes/data/lldb/svn/trunk/build/Debug/lldb")
  call-interactively(lldb)
  execute-extended-command(nil)
  call-interactively(execute-extended-command)

The gud-common-init elisp function references split-string-and-unquote function
which is not defined there.

Modified:
    lldb/trunk/utils/emacs/README

Modified: lldb/trunk/utils/emacs/README
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/utils/emacs/README?rev=126449&r1=126448&r2=126449&view=diff
==============================================================================
--- lldb/trunk/utils/emacs/README (original)
+++ lldb/trunk/utils/emacs/README Thu Feb 24 17:13:28 2011
@@ -6,3 +6,22 @@
 The lldb-gud-window.png is a screen capture of the gud (with lldb) at work on
 Aquamacs distribution 2.1 by loading the gud.el in this directory and 'M-x lldb'
 on the ../../test/condition_break directory.
+
+--------------------------------------------------------------------------------
+
+Versions of emacs that do not work:
+
+o This lldb-enhanced gud.el does not work on emacs 22.1.1 (dumb terminal).  This
+is the error I got:
+
+Debugger entered--Lisp error: (void-function split-string-and-unquote)
+  (split-string-and-unquote command-line)
+  (let* ((words ...) (program ...) (dir default-directory) (file-word ...) (file-subst ...) (args ...) (file ...) (filepart ...) (existing-buffer ...)) (pop-to$
+  gud-common-init("/Volumes/data/lldb/svn/trunk/build/Debug/lldb" nil gud-lldb-marker-filter)
+  lldb("/Volumes/data/lldb/svn/trunk/build/Debug/lldb")
+  call-interactively(lldb)
+  execute-extended-command(nil)
+  call-interactively(execute-extended-command)
+
+The gud-common-init elisp function references split-string-and-unquote function
+which is not defined there.
\ No newline at end of file





More information about the lldb-commits mailing list