diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:30:13 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:32:53 -0800 |
commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/emacs-lisp | |
parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.bz2 emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 6b75ecf7832..26207e03c4f 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -2622,7 +2622,7 @@ Helper function for `describe-package'." (defun package-install-button-action (button) "Run `package-install' on the package BUTTON points to. -Used for the 'action property of buttons in the buffer created by +Used for the `action' property of buttons in the buffer created by `describe-package'." (let ((pkg-desc (button-get button 'package-desc))) (when (y-or-n-p (format-message "Install package `%s'? " @@ -2633,7 +2633,7 @@ Used for the 'action property of buttons in the buffer created by (defun package-delete-button-action (button) "Run `package-delete' on the package BUTTON points to. -Used for the 'action property of buttons in the buffer created by +Used for the `action' property of buttons in the buffer created by `describe-package'." (let ((pkg-desc (button-get button 'package-desc))) (when (y-or-n-p (format-message "Delete package `%s'? " @@ -2645,7 +2645,7 @@ Used for the 'action property of buttons in the buffer created by (defun package-keyword-button-action (button) "Show filtered \"*Packages*\" buffer for BUTTON. The buffer is filtered by the `package-keyword' property of BUTTON. -Used for the 'action property of buttons in the buffer created by +Used for the `action' property of buttons in the buffer created by `describe-package'." (let ((pkg-keyword (button-get button 'package-keyword))) (package-show-package-list t (list pkg-keyword)))) |