diff lisp/derived.el @ 3061:fd1acd2f457a

[xemacs-hg @ 2005-11-13 07:39:26 by ben] fix 'foo -> `foo', `foo.' -> `foo'. derived.el, frame.el, toolbar.el, glyphs.el, hyper-apropos.el, mouse.el, files.el, specifier.el: Fix uses of `foo'; change 'foo -> `foo', and put punctuation outside of quotes. Add comments in specifier.el about needing better and new convenience functions.
author ben
date Sun, 13 Nov 2005 07:39:29 +0000
parents eb65d362090f
children 6e11554a16aa
line wrap: on
line diff
--- a/lisp/derived.el	Sun Nov 13 07:31:55 2005 +0000
+++ b/lisp/derived.el	Sun Nov 13 07:39:29 2005 +0000
@@ -59,11 +59,11 @@
 ;;  (define-key hypertext-mode-map [down-mouse-3] 'do-hyper-link)
 ;;
 ;; will create a function `hypertext-mode' with its own (sparse)
-;; keymap `hypertext-mode-map.'  The command M-x hypertext-mode will
+;; keymap `hypertext-mode-map'.  The command M-x hypertext-mode will
 ;; perform the following actions:
 ;;
 ;; - run the command (text-mode) to get its default setup
-;; - replace the current keymap with 'hypertext-mode-map,' which will
+;; - replace the current keymap with 'hypertext-mode-map', which will
 ;;   inherit from 'text-mode-map'.
 ;; - replace the current syntax table with
 ;;   'hypertext-mode-syntax-table', which will borrow its defaults
@@ -77,7 +77,7 @@
 ;;   set the local variable `case-fold-search' to nil.
 ;;
 ;; The advantages of this system are threefold.  First, text mode is
-;; untouched -- if you had added the new keystroke to `text-mode-map,'
+;; untouched -- if you had added the new keystroke to `text-mode-map',
 ;; possibly using hooks, you would have added it to all text buffers
 ;; -- here, it appears only in hypertext buffers, where it makes
 ;; sense.  Second, it is possible to build even further, and make