Home > debugger entered lisp > debugger entered-lisp error void-variable

Debugger Entered-lisp Error Void-variable

Sign in Pricing Blog Support Search GitHub This repository Watch 63 Star 1,033 Fork 111 magnars/multiple-cursors.el Code Issues 54 Pull requests 13 Projects 0 Pulse Graphs New issue Debugger entered--Lisp error: (void-variable xxxx) #81 Closed jccode opened this Issue May 17, 2013 · 8 comments Projects None yet Labels None yet Milestone No milestone Assignees No one assigned 2 participants jccode commented May 17, 2013 Hi magnars, when I use the multiple-cursor, I found some warning messages. Could you help to find out the cause of this? The steps to turn out this warning messages: 1. Turn on lisp-interaction-mode in current buffer(or you can open the "scratch" buffer). 2. use "C->" to select several words. 3. use "C-j" to insert newline. Then, The warning messages will appear now. The full warning messages as below: Debugger entered--Lisp error: (void-variable modes) eval(modes nil) eval-last-sexp-1(t) eval-last-sexp(t) eval-print-last-sexp() call-interactively(eval-print-last-sexp nil nil) The symbol "modes" in the warning messages, is the word which I selected. I have test it in Linux & windows xp, and the results are consistent. Emacs version: GNU Emacs 24.2.1 (x86_64-suse-linux-gnu) GNU Emacs 24.2.1 (i386-mingw-nt5.1.2600) Owner magnars commented May 17, 2013 Aha. That's because C-j is not bound to newline-and-indent in lisp-interaction-mode. It is bound to eval-print-last-sexp. My guess is that you will get the same error if you do: 1. Turn on lisp-interaction-mode in current buffer 2. mark the word "modes" 3. use "C-j" Since it will then try to evaluate the current region. jccode commented May 17, 2013 Yes, I see. Thank you magnars. I encounter another problem. And I'm not sure whether it's a problem of multiple-cursors. I found the problem only occur in windows emacs, while which works fine in linux emacs. In windows emacs, turn org-mod on, use "C->" to mark several words, then hit space-bar to insert a space. All the region should have been inserted one space now, but i found only the first region have been successfully inserted, others didn't change at all. It seems strangely. Do you think that what might

Sign in Pricing Blog Support Search GitHub This repository Watch 38 Star 630 Fork 149 xiaohanyu/oh-my-emacs Code Issues 1 Pull requests 0 Projects 0 Pulse Graphs New issue Debugger entered--Lisp error: (void-variable Labels upstream-bug-maybe https://github.com/magnars/multiple-cursors.el/issues/81 Milestone No milestone Assignees No one assigned 4 participants dadaphl commented May 30, 2014 when i start wich --debug-init Debugger entered--Lisp error: (void-variable 400 \, Bad Request

Bad Request

Your https://github.com/xiaohanyu/oh-my-emacs/issues/75 browser sent a request that this server could not understand\.
Reason: You speaking plain HTTP to an SSL-enabled port\.
] 2) require(linum-relative) byte-code("\306 �\307 \n\"�\310�!�\311\312�\313\"!�\312�\314\"�6\311\312�\315\"!�7\311\316 !!�8\317�\320�9#�:\312�\321\"�;\312�\322\"�<\312�\323\"�=\312�\324\"�>\312�\325\"�?\326 !�@\327�!\210\f\330=\204\272 Ok seems like my clipboard is too small for the whole error. This is without the bytecode parts: Debugger entered--Lisp error: (void-variable

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow http://stackoverflow.com/questions/1360562/lisp-void-variable-error-when-evaluating-function Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up Lisp void-variable error when evaluating function up vote 3 down vote favorite I'm trying to learn Lisp (elisp, actually), and I tried writing the following function as an exercise Project Euler Problem 2 (defun sumfib (n fn1 fn2 sum) "Calculate Fibonacci numbers up to 4,000,000 and sum all debugger entered-lisp the even ones" (if (< 4000000 (+ fn1 fn2)) sum (if (equal n 3) (sumfib 1 (+ fn1 fn2) fn1 (+ sum (+fn1 fn2))) (sumfib (+ n 1) (+ fn1 fn2) fn1 sum))) When I evaluate it I get the following error: Debugger entered--Lisp error: (void-variable fn1) (+ fn1 fn2) (< 4000000 (+ fn1 fn2)) ... Why wouldn't it recognize fn1? If I try to put (+ fn1 fn2) before the 'if' it doesn't complain about it there, so why the error here? Also, I realize the function debugger entered-lisp error may not actually be correct, but for now I'm not worried about the logic - I'll figure that out later. For now, I'm only interested in understanding this error. lisp elisp share|improve this question edited Jan 22 '15 at 17:55 iCodez 76.9k16107134 asked Sep 1 '09 at 4:45 Tal Pressman 5,0062029 add a comment| 2 Answers 2 active oldest votes up vote 2 down vote accepted Not sure if this solves your problem (I don't have an elisp interpreter handy), but you're missing a right paren. There should be one at the end of the first 'if' statement, after 'sum'. (if (< 4000000 (+ fn1 fn2)) sum) instead of: (if (< 4000000 (+ fn1 fn2)) sum I also think there might be some other issues in there. share|improve this answer edited Sep 1 '09 at 4:59 answered Sep 1 '09 at 4:52 Sam DeFabbia-Kane 2,0911110 Ooh, I am missing a parenthesis... It's not after the first 'if' though, as that's supposed to be and 'if-else'. Thanks. –Tal Pressman Sep 1 '09 at 5:02 Ah, ok. I'm used to Scheme, which does things a bit differently. Glad I was at least somewhat helpful. –Sam DeFabbia-Kane Sep 1 '09 at 5:08 add a comment| up vote 4 down vote You need an extra close parenthesis at the end of your function. You need a space in the first clause of the second if: (+fn1 fn2) should be (+ fn1 fn2). ELisp otherwise reads it as passing fn2 to a function named +fn1. Couple of other style issues:

 

Related content

debugger entered-lisp error error non-hex digit used for unicode escape

Debugger Entered-lisp Error Error Non-hex Digit Used For Unicode Escape p Unicode escape Date Sat May It's the line relatedl setq default-directory C Users Charles thats causing the problem cd C Users Charles raised the same error too Charlie Turner address hidden Hello Running Windows Vista bit service pack GNU Emacs i -mingw-nt I get the above error message in my Messages buffer on startup Here is the version I get when I run runemacs exe --debug-init Debugger entered--Lisp error error Non-hex digit used for Unicode escape eval-buffer buffer load nil c Users Charles emacs d init el nil t

debugger entered-lisp error end-of-file

Debugger Entered-lisp Error End-of-file p Sign in Pricing Blog Support Search relatedl GitHub option form This repository Watch Star emacs debugger Fork gregsexton ob-ipython Code Issues Pull requests spacemacs Projects Pulse Graphs New issue make client process fails on WIndows Closed ajsteven opened this Issue Jun middot comments Projects None yet option form Labels None yet option form Milestone No milestone option form Assignees No one assigned participants ajsteven commented Jun Hello First thanks for the awesome package I am using Emacs on Windows with Python and Ipython I installed ob-ipython from master it does not appear to be on

debugger entered-lisp error void-function c-lang-const

Debugger Entered-lisp Error Void-function C-lang-const p Sign in Pricing relatedl Blog Support Search GitHub option form This repository Watch Star Fork purcell emacs d Code Issues Pull requests Projects Wiki Pulse Graphs New issue flycheck update problem Closed causlayer opened this Issue Dec middot comments Projects None yet option form Labels None yet option form Milestone No milestone option form Assignees No one assigned participants causlayer commented Dec update results Debugger entered--Lisp error void-function flycheck-set-checker-properties flycheck-set-checker-properties haskell-hdevtools flycheck-documentation A Haskell syntax and type checker using hdevtools n nSee URL https github com bitc hdevtools' flycheck-executable-var flycheck-haskell-hdevtools-executable flycheck-command hdevtools check -g

debugger entered-lisp error void-function define

Debugger Entered-lisp Error Void-function Define p Example with Decrementing Counter for a discussion However your function definition has a bug You have mistyped lsquo rsquo for lsquo - rsquo Here is relatedl the broken definition defun triangle-bugged number Return sum of numbers through NUMBER inclusive let total while number setq total total number setq number number Error here total If you are reading this in Info you can evaluate this definition in the normal fashion You will see triangle-bugged appear in the echo area Now evaluate the triangle-bugged function with an argument of triangle-bugged In a recent GNU Emacs you

debugger entered-lisp error void-variable doctype

Debugger Entered-lisp Error Void-variable Doctype p when loading bookmark Date Mon Mar - PDT Teemu relatedl Likonen- wrote - - - epowell wrote I just tried to load the bookmark package for the first time I downloaded all the el files listed on the wiki and put the require statement in my emacs file My emacs version is Below is the error I got Debugger entered--Lisp error void-variable DOCTYPE You downloaded an HTML file with a DOCTYPE header Maybe that file contains the actual Emacs Lisp file Thank you Teemu It works perfectly now This forum always saves me even

debugger entered-lisp error invalid-read-syntax

Debugger Entered-lisp Error Invalid-read-syntax p Sign in Pricing relatedl Blog Support Search GitHub option form This repository Watch Star Fork joaotavora yasnippet Code Issues Pull requests Projects Pulse Graphs New issue snippets go-mode default Invalid Read Syntax on Emacs development Closed rye opened this Issue Oct middot comments Projects None yet option form Labels None yet option form Milestone No milestone option form Assignees No one assigned participants rye commented Oct I'm currently running a version of Emacs that updates nightly to the latest Emacs version of the Git clone of the BZR repo Today I noticed a problem with

debugger entered-lisp error void-function defined

Debugger Entered-lisp Error Void-function Defined p Example with Decrementing Counter for a discussion However your function definition has a bug You have mistyped lsquo rsquo for lsquo - rsquo Here relatedl is the broken definition defun triangle-bugged number Return sum debugger entered--lisp error void-variable of numbers through NUMBER inclusive let total while number setq emacs symbol s function definition is void total total number setq number number Error here total If you are reading this in Info you spacemacs can evaluate this definition in the normal fashion You will see triangle-bugged appear in the echo area Now evaluate the triangle-bugged

debugger entered-lisp error void-variable oad-path

Debugger Entered-lisp Error Void-variable Oad-path p Sign in Pricing Blog Support Search GitHub option form This repository relatedl Watch Star Fork syl bnr spacemacs Code custom-theme-load-path Issues Pull requests Projects Wiki Pulse Graphs emacs themes New issue Error Symbol's value as variable is void closed Closed huchhong opened this Issue Apr middot comments Projects None yet option form Labels - Forum - Install option form Milestone No milestone option form Assignees No one assigned participants huchhong commented Apr I was trying to install spacemacs During installation an error arised Symbol's value as variable is void closed I searched similar errors

debugger entered-lisp error void-variable cedet-menu-map

Debugger Entered-lisp Error Void-variable Cedet-menu-map p experimenting with our plus addition In the following expression put your cursor right after the before the first number type C-x C-e In GNU Emacs you will create a Backtrace buffer that says ---------- Buffer Backtrace ---------- Debugger entered--Lisp error void-variable eval eval-last-sexp- nil eval-last-sexp nil call-interactively eval-last-sexp ---------- Buffer Backtrace ---------- Again you can quit the debugger by typing q in the Backtrace buffer This backtrace is different from the very first error message we saw which said lsquo Debugger entered--Lisp error void-function this rsquo In this case the function does not have

debugger entered-lisp error void-variable package-archives

Debugger Entered-lisp Error Void-variable Package-archives table id toc tbody tr td div id toctitle Contents div ul li a href Custom-theme-load-path a li ul td tr tbody table p Sign in Pricing relatedl Blog Support Search GitHub option form This p h id Custom-theme-load-path p repository Watch Star Fork xiaohanyu oh-my-emacs Code emacs color theme Issues Pull requests Projects Pulse Graphs New issue Debugger entered--Lisp emacs themes error void-variable DOCTYPE Closed dadaphl opened this Issue May middot comments Projects None yet option form Labels upstream-bug-maybe option form Milestone No milestone option form Assignees No one assigned participants dadaphl commented May

debugger entered-lisp error void-function javascript-mode

Debugger Entered-lisp Error Void-function Javascript-mode table id toc tbody tr td div id toctitle Contents div ul li a href Gv-define-simple-setter a li li a href Symbol s Function Definition Is Void a li ul td tr tbody table p quick overview of the site Help relatedl Center Detailed answers to any questions you spacemacs update packages might have Meta Discuss the workings and policies of this p h id Gv-define-simple-setter p site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers emacs gv-define-simple-setter or posting ads with us Emacs Questions Tags Users Badges

debugger entered-lisp error void-function scroll-bar-mode

Debugger Entered-lisp Error Void-function Scroll-bar-mode p entered--Lisp error void-function package-desc-vers Date Sat Feb User-agent relatedl Gnus Gnus v Emacs gnu linux M-x list-packages RET fails for me with the following backtrace It works fine with -- ---------------cut here---------------start------------- --- Debugger entered--Lisp error void-function package-desc-vers package-desc-vers nil Interface to ack-like source code search tools tar keywords quote tools processes convenience url https github com leoliu ack-el ad-Advice-package--add-to-archive-contents package-archive-contents package-pinned-packages package--builtin-versions package-alist cl-struct-package-desc-tags vector cl-struct-package-desc nil assoc version-list- error s accessing a non- s package-desc-version package-desc version-list- home jtocancipa local src emacs git orig lisp emacs-lisp package elc ack nil Interface to

debugger entered-lisp error void-function eruby-nxhtml-mumamo

Debugger Entered-lisp Error Void-function Eruby-nxhtml-mumamo p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork bbatsov prelude Code Issues Pull requests Projects Wiki Pulse Graphs New issue Debugger entered--Lisp error void-function filename Closed pigmej opened this Issue Apr middot comments Projects None yet option form Labels None yet option form Milestone No milestone option form Assignees No one assigned participants pigmej commented Apr Debugger entered--Lisp error void-function filename filename home pigmej emacs d elpa flycheck- flycheck elc flycheck--declare-checker- bash A Bash syntax checker using the bash executable n nSee URL http www gnu org software

debugger entered-lisp error void-variable system

Debugger Entered-lisp Error Void-variable System p Sign in Pricing Blog Support Search GitHub option form This repository relatedl Watch Star Fork syl bnr spacemacs Code emacs Issues Pull requests Projects Wiki Pulse Graphs New spacemacs issue Error Symbol's value as variable is void closed Closed huchhong opened this Issue Apr middot comments Projects None yet option form Labels - Forum - Install option form Milestone No milestone option form Assignees No one assigned participants huchhong commented Apr I was trying to install spacemacs During installation an error arised Symbol's value as variable is void closed I searched similar errors and