Home > wrong type > error in process filter wrong type argument stringp nil

Error In Process Filter Wrong Type Argument Stringp Nil

Contents

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 emacs wrong type argument stringp this site About Us Learn more about Stack Overflow the company Business emacs stringp Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask wrong type argument stringp t 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

Emacs Wrong Type Argument Number-or-marker-p Nil

Wrong type argument: stringp, nil error up vote 5 down vote favorite I need to use update-directory-autoloads function in a little el-script. When I'm trying to call this function with an argument that is a name of a directory I receive this error: Wrong type argument: stringp, nil. Call looks like this: (update-directory-autoloads "~/test") emacs elisp share|improve this question edited Feb 7 '13 emacs wrong type argument arrayp nil at 22:31 Jesus Ramos 18.1k53971 asked Feb 7 '13 at 22:14 Jauhien Piatlicki 148111 add a comment| 2 Answers 2 active oldest votes up vote 5 down vote accepted Generating autoload files is poorly documented. You're experiencing the problem that arises because you haven't set the variable generated-autoload-file. Try the following: (let ((generated-autoload-file "~/test/loaddefs.el")) (update-directory-autoloads "~/test")) Update the generated-autoloads-file binding to be the location where you want the loaddefs.el file to live. share|improve this answer answered Feb 7 '13 at 22:41 Trey Jackson 59.9k8150190 Thank you. The problem really was in generated-autoload-file undefined. –Jauhien Piatlicki Feb 7 '13 at 23:59 add a comment| up vote 9 down vote When you get Wrong type argument: foo, bar., you should M-: (setq debug-on-error t) RET and then reproduce the error so as to get a backtrace. Actually, you can set debug-on-error like that in your .emacs and Emacs usually stays perfectly useable. share|improve this answer answered Feb 8 '13 at 2:40 Stefan 19.7k12049 6 M-x toggle-debug-on-error is a bit nicer for the interactive case. –phils Feb 8 '13 at 5:45 Indeed. Or even

Sign in Pricing Blog Support Search GitHub This repository Watch 56 Star 810 Fork 115 jorgenschaefer/elpy Code Issues 199 Pull requests 7 Projects 0 Wiki Pulse Graphs New issue error in process filter: Wrong type argument: stringp, nil emacs debug on error #355 Closed birkenfeld opened this Issue Sep 11, 2014 · 6 comments Projects None yet

Emacs Debugger

Labels bug Reported upstream Milestone v1.6 Assignees No one assigned 2 participants birkenfeld commented Sep 11, 2014 Typing "from"

Spacemacs Windows

in a Python module, I get this "signal"ed in the echo area, and the message log contains error in process filter: if: Wrong type argument: stringp, nil error in process filter: Wrong type argument: stringp, nil This http://stackoverflow.com/questions/14762036/wrong-type-argument-stringp-nil-error comes from elpy-rpc--default-error-callback (the first branch) I would ignore it, but the signal causes a 2-second "freeze" of Emacs, so it gets very annoying. Do you have a pointer on how to debug where the error actually is generated? I'm a bit lost in the many levels of RPC indirection :) birkenfeld commented Sep 11, 2014 Got it: it actually comes from company, the call of company-dabbrev-code in elpy-company-backend. Backtrace here: http://ix.io/ehN I guess https://github.com/jorgenschaefer/elpy/issues/355 I'll also report this to company-mode, don't know if you want to add a try-catch around the call... Owner jorgenschaefer commented Sep 11, 2014 Thank you for the report! Does M-: (company-dabbrev-code 'candidate "from") throw the same error for you? If so, what version of company are you using? jorgenschaefer added the bug label Sep 11, 2014 jorgenschaefer added this to the v1.6 milestone Sep 11, 2014 birkenfeld commented Sep 11, 2014 Yep, same error. It's company 0.8.3, I've reported to Dmitry here: company-mode/company-mode#183 -- it's a bit mysterious... By the way, thank you so much for elpy. It's so nice to have these loose features all bundled up in a nice package. jorgenschaefer added the Reported upstream label Sep 11, 2014 Owner jorgenschaefer commented Sep 11, 2014 Thank you for reporting this upstream. I can't reproduce this locally with company 0.8.3. Hm. Weird. birkenfeld commented Sep 11, 2014 Turns out it was a rogue package in my lisp library, so not a bug. Sorry to bother you. birkenfeld closed this Sep 11, 2014 Owner jorgenschaefer commented Sep 11, 2014 Thank you for the nice bughunting and for the kind words – enjoy Elpy. :-) Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment Contact GitHub API Training Shop Blog About ©

Sign in Pricing Blog Support Search GitHub This repository Watch 153 Star 1,919 Fork https://github.com/clojure-emacs/cider/issues/1608 333 clojure-emacs/cider Code Issues 79 Pull requests 2 Projects 0 Wiki Pulse Graphs New issue C-c C-t C-t on deftest form can cause stringp, nil type error #1608 Closed RickMoynihan opened this Issue Mar 7, 2016 · 3 comments Projects None yet Labels None yet Milestone No milestone wrong type Assignees No one assigned 3 participants RickMoynihan commented Mar 7, 2016 When running a test with C-C C-t C-t with the cursor inside a deftest form an error occurs. Expected behavior Tests should run and return success or failure message/report. Actual behavior error in process filter: cider-propertize: Wrong type wrong type argument argument: stringp, nil error in process filter: Wrong type argument: stringp, nil With toggle-debug-on-error Debugger entered--Lisp error: (wrong-type-argument stringp nil) propertize(nil face font-lock-type-face) cider-propertize(nil ns) cider-test-echo-summary((dict "error" 0 "fail" 0 "ns" 1 "pass" 0 "test" 0 "var" 1) (dict)) #[257 "\306�\307\"\306�\310\"\306�\311\"\306�\312\"\306�\313\"\314�\235\203$ Steps to reproduce the problem Some deftests work others don't. I'm not sure exactly when this occurs, but I think it might happen when a test includes a failing test who's is call is in another namespace. Put cursor on a deftest form where the error occurs Run C-C C-t C-t. CIDER version information CIDER 0.11.0 (Clojure 1.8.0, nREPL 0.2.12) Emacs version E.g. 24.4.1 Operating system OSX 10.9.5 jeffvalk commented Mar 7, 2016 if you have a minimal repro case, please post that code. clojure-emacs member bbatsov commented Mar 9, 2016 Seems the ns is nil for some reason. jeffvalk commented Mar 9, 2016 This is a duplicat

 

Related content

debugger entered-lisp error wrong-type-argument stringp nil

Debugger Entered-lisp Error Wrong-type-argument Stringp Nil table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Wrong Type Argument Stringp Nil a li li a href Emacs Wrong Type Argument Number-or-marker-p Nil a li li a href Emacs Stringp a li li a href Emacs Wrong Type Argument Listp a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork syl bnr spacemacs Code Issues relatedl Pull requests Projects Wiki Pulse Graphs p h id Emacs Wrong Type Argument Stringp Nil p New

debugger entered-lisp error wrong-type-argument listp set-from-style

Debugger Entered-lisp Error Wrong-type-argument Listp Set-from-style table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Wrong Type Argument Number-or-marker-p a li li a href Emacs Wrong Type Argument Listp a li li a href Emacs Lisp Debugger a li li a href Listp Elisp a li ul td tr tbody table p Sign p h id Emacs Wrong Type Argument Number-or-marker-p p in Pricing Blog Support Search GitHub option form This emacs wrong type argument stringp repository Watch Star Fork jorgenschaefer elpy Code Issues p h id Emacs Wrong Type Argument Listp p

emacsclient *error* wrong type argument stringp nil

Emacsclient error Wrong Type Argument Stringp Nil p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork relatedl magit magit Code Issues Pull requests emacs wrong type argument stringp nil Projects Wiki Pulse Graphs New issue Cannot commit with new commit cedet wrong type argument stringp nil workflow wrong-type-argument stringp nil Closed zachallaun opened this Issue Aug middot comments Projects None yet option form Labels emacsclient option form Milestone option form Assignees No one assigned participants zachallaun commented Aug Hi there I've just upgraded magit and am running into an error when trying to commit

error during redisplay wrong-type-argument number-or-marker-p nil

Error During Redisplay Wrong-type-argument Number-or-marker-p Nil table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Wrong Type Argument Number-or-marker-p a li li a href Emacs Wrong Type Argument Listp a li li a href Emacs Wrong Type Argument Commandp a li li a href Emacs Lisp Debugger a li ul td tr tbody table p number-or-marker-p nil in redisplay--update-region-highlight Date Wed Apr Hi I relatedl got the following error but I p h id Emacs Wrong Type Argument Number-or-marker-p p can't reproduce it in a fresh session emacs wrong type argument stringp Debugger

error in process filter wrong type argument number-or-marker-p nil

Error In Process Filter Wrong Type Argument Number-or-marker-p Nil table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Wrong Type Argument Stringp a li li a href Wrong Type Argument Integer-or-marker-p Nil a li li a href Emacs Wrong Type Argument Listp a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork dimitri el-get Code Issues relatedl Pull requests Projects Wiki Pulse Graphs New issue emacs wrong type argument number-or-marker-p Installation doesn't work Closed taoeffect opened this Issue Jan middot p

error in process filter wrong type argument

Error In Process Filter Wrong Type Argument table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Error In Process Filter a li li a href Wrong Type Argument Characterp Tab a li li a href Wrong Type Argument Arrayp a li li a href Cider Emacs a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork jorgenschaefer elpy Code Issues Pull relatedl requests Projects Wiki Pulse Graphs New issue error p h id Emacs Error In Process Filter p in process

error* wrong type argument stringp nil

Error Wrong Type Argument Stringp Nil table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Debug On Error a li li a href Spacemacs Windows a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies relatedl of this site About Us Learn more about Stack Overflow emacs wrong type argument stringp the company Business Learn more about hiring developers or posting ads with us Stack emacs stringp Overflow Questions Jobs Documentation

error-129 the supplied format buffer is wrong

Error- The Supplied Format Buffer Is Wrong table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Wrong Type Argument Number-or-marker-p a li li a href Windows Error Codes List a li li a href Process exit Code Values a li li a href Sccm Exit Code a li ul td tr tbody table p Fran ais Deutsch Espa ol Help Video Screencast Help Windows System Error Codes exit codes Description Created Jan Updated Dec comments Language relatedl TranslationsMachine TranslationsDeutsch Fran ais Espa ol Sidd Votes p h id Emacs Wrong Type Argument Number-or-marker-p

lisp error wrong-type-argument stringp t

Lisp Error Wrong-type-argument Stringp T table id toc tbody tr td div id toctitle Contents div ul li a href Emacs Wrong Type Argument Listp a li li a href Wrong Type Argument Integer Or Marker P Nil a li li a href Wrong Type Argument Stringp Nil Emacs a li ul td tr tbody table p For example the function expects the values of its arguments to be numbers As an experiment we can pass relatedl it the quoted symbol hello instead of a number emacs wrong type argument number-or-marker-p nil Position the cursor after the following expression and