I have an installed packages (say mypackage.el
) in \.emacs.d\lisp\
directory. In that package there is
(defcustom xyz "path1" "Path to the program"
:group 'blablabla
:type 'string)
I would like to change the above as
(defcustom xyz "path2" "Path to the program"
:group 'blablabla
:type 'string)
I prefer to do this modification not in the package el file but in my init file. However adding the above in the init file has no effect and for the package the variable xyz
is always path1
.