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

Debugger Entered-lisp Error Void-variable Doctype

when loading bookmark+ Date: Mon, 14 Mar 2011 11:56:19 -0700 (PDT) Teemu Likonen-2 wrote: > > * 2011-03-14 11:43 (-0700), 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: 21.4.1. >> Below is the error I got: >> >> Debugger entered--Lisp error: (void-variable > You downloaded an HTML file with a header. Maybe that > file contains the actual Emacs Lisp file. > > > Thank you, Teemu! It works perfectly now. (This forum always saves me....even from the dumbest of my mistakes :) -- View this message in context: http://old.nabble.com/Lisp-error%3A-%28void-variable-%3C%21DOCTYPE%29-when-loading-bookmark%2B-tp31147298p31147400.html Sent from the Emacs - Help mailing list archive at Nabble.com. reply via email to [Prev in Thread] Current Thread [Next in Thread] Lisp error: (void-variable

> nil "/home/pravi/software/icicles/apropos-fn+var.el" nil t) ; Reading at buffer position 10 load-with-code-conversion("/home/pravi/software/icicles/apropos-fn+var.el" "/home/pravi/software/icicles/apropos-fn+var.el" t t) require(apropos-fn+var nil t) eval-buffer(#> nil "/home/pravi/software/icicles/icicles-var.el" nil t) https://lists.gnu.org/archive/html/help-gnu-emacs/2011-03/msg00490.html ; Reading at buffer position 8940 load-with-code-conversion("/home/pravi/software/icicles/icicles-var.el" "/home/pravi/software/icicles/icicles-var.el" nil t) require(icicles-var) eval-buffer(#> nil "/home/pravi/software/icicles/icicles.el" nil t) ; Reading at buffer position 67815 load-with-code-conversion("/home/pravi/software/icicles/icicles.el" "/home/pravi/software/icicles/icicles.el" nil t) require(icicles) eval-buffer(# nil "/home/pravi/.emacs" nil t) ; Reading at buffer position 6896 load-with-code-conversion("/home/pravi/.emacs" "/home/pravi/.emacs" t t) load("~/.emacs" t t) #[nil https://www.emacswiki.org/emacs/Thomas " command-line() normal-top-level()Dunno where you really intended the content of the page to be, but replying here anyway.It’s clear that you saved an HTML page as apropos-fn+var.el, instead of the Lisp file. Your file has

as Inappropriate ♦ ♦ startup error This post was updated on . Hi, After http://emacs.1067599.n8.nabble.com/startup-error-td99356.html installing auto-install, I was getting the following error while start https://ubuntuforums.org/archive/index.php/t-1942734.html my emacs with `--debug-init' option Debugger entered--Lisp error: (void-variable > nil "/home/ting/elisp/auto-install.el" nil t) ; Reading at buffer position 10 load-with-code-conversion("/home/ting/elisp/auto-install.el" "/home/ting/elisp/auto-install.el" nil t) require(auto-install) eval-buffer(#nil "/home/ting/.emacs" nil t) ; Reading at buffer position 1377 debugger entered-lisp load-with-code-conversion("/home/ting/.emacs" "/home/ting/.emacs" t t) load("~/.emacs" t t) #[nil " How could I fix it? Thanks and regards! Drew Adams Reply | Threaded Open this post in threaded view ♦ ♦ | Report Content as Inappropriate ♦ ♦ RE: startup error > After installing auto-install, I was getting the debugger entered-lisp error following > error while start > my emacs with `--debug-init' option > > Debugger entered--Lisp error: (void-variable eval-buffer(#> nil > "/home/ting/elisp/auto-install.el" > nil t) ; Reading at buffer position 10 > load-with-code-conversion("/home/ting/elisp/auto-install.el" > "/home/ting/elisp/auto-install.el" nil t) > require(auto-install) > eval-buffer(# nil "/home/ting/.emacs" nil > t) ; Reading at > buffer position 1377 > load-with-code-conversion("/home/ting/.emacs" > "/home/ting/.emacs" t t) > load("~/.emacs" t t) > > How could I fix it? It looks like you are trying to evaluate a buffer that contains not Emacs Lisp but HTML or XML: (void-variable

with emacs, and I'd like to add a new mode : hightlight indentation mode (https://github.com/antonj/Highlight-Indentation-for-Emacs). So I downloaded the lisp file, added it in ~/.emacs.d, and modified my .emacs.d as follow : (menu-bar-mode -1) (tool-bar-mode -1) (scroll-bar-mode -1) (setq ring-bell-function 'ignore) (add-to-list 'load-path "~/.emacs.d/") (autoload 'highlight-indentation-mode "highlight-indentation.el") But when I try M-x hightlight-indentation or M-x highlight-indentation-mode, emacs tells me that this command does not exists... What should I do ? Thanks ):P brainwashMarch 19th, 2012, 12:50 AMYou should try to include the elisp file via require: (add-to-list 'load-path "~/.emacs.d") (require 'highlight-indentation) silmaaMarch 21st, 2012, 03:02 AMHi, Thank you for your answer :) But emacs tells me that my .emacs is wrong, with require... Warning (initialization) : an error occurred while loading `home/bbti/.emacs` : Symbol's value as variable is void: > nil "/home/bbti/.emacs.d/highlight-indentation.el" nil t) ; Reading at buffer position 13 load-with-code-conversion("/home/bbti/.emacs.d/highlight-indentation.el" "/home/bbti/.emacs.d/highlight-indentation.el" nil t) require(highlight-indentation) eval-buffer(# nil "/home/bbti/.emacs" nil t) ; Reading at buffer position 165 load-with-code-conversion("/home/bbti/.emacs" "/home/bbti/.emacs" t t) load("~/.emacs" t t) #[something unreadable] [init-file-user system-type user-init-file-1 user-init-file otherfile source ms-dos "~" "/_emacs" windows-nt directory-files nil "^\\.emacs\\(\\.elc?\\)?$" "~/.emacs" "^_emacs\\(\\.elc?\\)?$" "~/_emacs" "/.emacs" t load expand-file-name "init" file-name-as-directory "/.emacs.d" file-name-extension "elc" file-name-sans-extension ".el" file-exists-p file-newer-than-file-p message "Warning: %s is newer than %s" sit-for 1 "default" alt inhibit-default-init inhibit-startup-screen] 7]() command-line() normal-top-level() ... not very explicit brainwashMarch 21st, 2012, 10:38 AMI'm running GNU Emacs 23.3.1. After downloading the highlight-indentation.el (version 0.6.0) and adding it to .emacs I can load it via M-x highlight-indentation-mode. Not an expert myself, but maybe there is some codepage issue causing the error. :confus

 

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 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-variable

Debugger Entered-lisp Error Void-variable p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork magnars multiple-cursors el Code Issues relatedl Pull requests Projects Pulse Graphs New issue Debugger entered--Lisp error void-variable xxxx Closed jccode opened this Issue May middot comments Projects None yet option form Labels None yet option form Milestone No milestone option form Assignees No one assigned participants jccode commented May 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 Turn on

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