How do I hide Emacs' “obsolete variable” warnings?

前端 未结 4 934
既然无缘
既然无缘 2021-02-04 03:01

I\'ve upgraded to Emacs 23.3 and now the *Compile-Log* buffer opens constantly with errors like:

Warning: `font-lock-beginning-of-syntax-fu         


        
4条回答
  •  说谎
    说谎 (楼主)
    2021-02-04 03:44

    I fixed it by running this on the elisp:

    sed -i.bak 's/font-lock-beginning-of-syntax-function/syntax-begin-function/g' `find . -name '*.el' -exec grep -l 'font-lock-beginning-of-syntax-function' {} \;` 
    

提交回复
热议问题