> > (let ((inhibit-message t)) > > (message "Msg only to be logged in *Messages*")) > > Doesn't work for me? > > I see it. > > Dont know if message displays it or if it is displayed because > it is returned. What you see is the printed return value of the sexp you asked to evaluate-AND-PRINT. Try `eval-region' on the sexp instead. Or put it in a defun and invoke the function in a way that doesn't also print its return value.