emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Additional safe-local-variables


From: Reiner Steib
Subject: Re: Additional safe-local-variables
Date: Thu, 06 Apr 2006 21:23:59 +0200
User-agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux)

On Thu, Apr 06 2006, Richard Stallman wrote:

>     Maybe it would make sense to introduce `string-or-null-p' to avoid
>     using (lambda (a) (or (stringp a) (null a))) in the autoloads.
>
> Please do.

I added it to `subr.el' in the "Misc. useful functions." part:

(defun string-or-null-p (object)
  "Return t if OBJECT is a string or nil.
Otherwise, return nil."
  (or (stringp object) (null object)))

(Should it be `defun' or `defsubst'?)

I also updated the comment about safe-local-variable declarations in
`files.el'.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]