X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/e57f766d3c97162258ec24b2b4986cdc0e98d352..44caa96dc5c16cbc4ee1bb26ec880af2e2ecf9f8:/lisp/allout-widgets.el diff --git a/lisp/allout-widgets.el b/lisp/allout-widgets.el index 164cd3192a..abcfb2ca59 100644 --- a/lisp/allout-widgets.el +++ b/lisp/allout-widgets.el @@ -1,6 +1,6 @@ ;; allout-widgets.el --- Visually highlight allout outline structure. -;; Copyright (C) 2005-2015 Free Software Foundation, Inc. +;; Copyright (C) 2005-2016 Free Software Foundation, Inc. ;; Author: Ken Manheimer ;; Maintainer: Ken Manheimer @@ -348,7 +348,7 @@ to `allout-body-modification-handler', and is always reset by images with lists containing the name of the icon directory (as found on the `load-path') and the icon name. -Set this variable to `nil' to empty the cache, and have it replenish from the +Set this variable to nil to empty the cache, and have it replenish from the filesystem.") ;;;_ = allout-widgets-unset-inhibit-read-only (defvar allout-widgets-unset-inhibit-read-only nil @@ -384,9 +384,9 @@ The structure includes the guides lines, bullet, and bullet cue.") Entries on the list are lists whose first element is a symbol indicating the change type and subsequent elements are data specific to that change -type. Specifically: +type. For example: - 'exposure `allout-exposure-from' `allout-exposure-to' `allout-exposure-flag' + (exposure ALLOUT-EXPOSURE-FROM ALLOUT-EXPOSURE-TO ALLOUT-EXPOSURE-FLAG) The changes are recorded in reverse order, with new values pushed onto the front.") @@ -481,9 +481,9 @@ text in allout item bodies.") \(That space is used to convey selected cues indicating body qualities, including things like: - - encryption '~' - - numbering '#' - - indirect reference '@' + - encryption `~' + - numbering `#' + - indirect reference `@' - distinctive bullets - see `allout-distinctive-bullets-string'.)") ;;;_ = allout-span-to-category (defvar allout-span-to-category @@ -869,7 +869,7 @@ Optional RECURSING is for internal use, to limit recursion." ;; tell the allout-widgets-post-command-business to reestablish the hook: (setq allout-widgets-reenable-before-change-handler t) ;; and raise an error to prevent the edit (and disable the hook): - (error + (error "%s" (substitute-command-keys allout-structure-unruly-deletion-message))))) ;;;_ > allout-widgets-after-change-handler (defun allout-widgets-after-change-handler (_beg _end _prelength) @@ -2287,7 +2287,7 @@ Deletes allowed only when `inhibit-read-only' is t." ((yes-or-no-p "Unruly edit of outline structure - allow? ") (setq allout-widgets-unset-inhibit-read-only (not inhibit-read-only) inhibit-read-only t)) - (t (error + (t (error "%s" (substitute-command-keys allout-structure-unruly-deletion-message))))) ;;;_ > allout-item-icon-key-handler () (defun allout-item-icon-key-handler () @@ -2372,7 +2372,7 @@ The elements of LIST are not copied, just the list structure itself." (car list))) ;;;_ . allout-widgets-count-buttons-in-region (start end) (defun allout-widgets-count-buttons-in-region (start end) - "Debugging/diagnostic tool - count overlays with 'button' property in region." + "Debugging/diagnostic tool - count overlays with `button' property in region." (interactive "r") (setq start (or start (point-min)) end (or end (point-max)))