Questions tagged [warning]
The warning tag has no summary.
77 questions
0 votes
0 answers
27 views
How to resolve warning about invalid function after installing helm package
I installed package helm from M-x package-list-packages. I then added the minimal configuration: (require 'helm) (helm-mode 1) in my init file. Now when I start emacs, I see the following warning ...
0 votes
1 answer
103 views
How can I get which packages define certain variables?
I'm getting back in to emacs after a few years away, and my old init.el is throwing up warnings like this: ⛔ Warning (comp): init.el:114:7: Warning: assignment to free variable ‘c-basic-offset’ ⛔ ...
1 vote
1 answer
61 views
How to test for Warning using ERT?
I want to check for a warning but not sure how to go about it. My warning is: Warning (my-func-file-not-found): /path/to/somefile.txt This is created with display-warning 'my-func-file-not-found. I ...
5 votes
1 answer
668 views
Is there a way to suppress warnings when a package is compiled in elisp?
Whenever I compile my package org-ref I get lots of warnings like: Warning (comp): openalex.el:622:2: Warning: docstring wider than 80 characters. It is a fair warning, but it caused by a hydra with a ...
0 votes
0 answers
156 views
Warning: void-function org-link-set-parameter [duplicate]
Anyone know why I might be getting the following warning on running emacs? I'm running org-mode 9.7 with the latest doom emacs. Warning (initialization): An error occurred while loading ‘/home/seba/....
3 votes
1 answer
4k views
How to disable automatic appearance of *Warnings* buffer in Emacs?
I use Emacs (version 28.1 on Windows 11-64bits) with AUCTeX to work with my LaTeX documents. The directory of files on which I'm working is synchronized in real time with a Dropbox cloud. This means ...
3 votes
1 answer
326 views
Warnings about malformed functions when using lexical-let
I have the following function: (defun filter-repl-show-after (line-num) "Show lines after LINE-NUM." (filter-repl--foreach-line (lexical-let ((line-num line-num)) (lambda () ...
0 votes
1 answer
573 views
How can I disable some warnings about function comments in lisp-mode
I am having a file open with lisp code that has some functions written. The file has elisp-mode as a major mode. Emacs shows highlighting and errors on lines with functions that some function ...