aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/frameset.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/frameset.el')
-rw-r--r--lisp/frameset.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/frameset.el b/lisp/frameset.el
index 10c6914f52d..0462d776c0e 100644
--- a/lisp/frameset.el
+++ b/lisp/frameset.el
@@ -396,17 +396,17 @@ Properties can be set with
396;; or, if you're only changing a few items, 396;; or, if you're only changing a few items,
397;; 397;;
398;; (defvar my-filter-alist 398;; (defvar my-filter-alist
399;; (nconc '((my-param1 . :never) 399;; (append '((my-param1 . :never)
400;; (my-param2 . my-filtering-function)) 400;; (my-param2 . my-filtering-function))
401;; frameset-filter-alist) 401;; frameset-filter-alist)
402;; "My brief customized parameter filter alist.") 402;; "My brief customized parameter filter alist.")
403;; 403;;
404;; and pass it to the FILTER arg of the save/restore functions, 404;; and pass it to the FILTER arg of the save/restore functions,
405;; ALWAYS taking care of not modifying the original lists; if you're 405;; ALWAYS taking care of not modifying the original lists; if you're
406;; going to do any modifying of my-filter-alist, please use 406;; going to do any modifying of my-filter-alist, please use
407;; 407;;
408;; (nconc '((my-param1 . :never) ...) 408;; (append '((my-param1 . :never) ...)
409;; (copy-sequence frameset-filter-alist)) 409;; (copy-sequence frameset-filter-alist))
410;; 410;;
411;; One thing you shouldn't forget is that they are alists, so searching 411;; One thing you shouldn't forget is that they are alists, so searching
412;; in them is sequential. If you just want to change the default of 412;; in them is sequential. If you just want to change the default of
@@ -445,7 +445,7 @@ DO NOT MODIFY. See `frameset-filter-alist' for a full description.")
445 445
446;;;###autoload 446;;;###autoload
447(defvar frameset-persistent-filter-alist 447(defvar frameset-persistent-filter-alist
448 (nconc 448 (append
449 '((background-color . frameset-filter-sanitize-color) 449 '((background-color . frameset-filter-sanitize-color)
450 (buffer-list . :never) 450 (buffer-list . :never)
451 (buffer-predicate . :never) 451 (buffer-predicate . :never)