]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/ChangeLog, src/ChangeLog: Fix typos.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 7 Apr 2014 00:51:52 +0000 (02:51 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 7 Apr 2014 00:51:52 +0000 (02:51 +0200)
lisp/ChangeLog
src/ChangeLog

index 2016bcd3e022cbc9125e3266d391663a02952049..87f3c74c9fc942ea375535465095e36c4ee80aa6 100644 (file)
@@ -9,15 +9,14 @@
 
 2014-04-04  João Távora  <joaotavora@gmail.com>
 
-       * elec-pair.el:
-       (electric-pair--syntax-ppss): When inside comments parse from
-       comment beginning.
+       * elec-pair.el (electric-pair--syntax-ppss): When inside comments
+       parse from comment beginning.
        (electric-pair--balance-info): Fix typo in comment.
        (electric-pair--in-unterminated-string-p): Delete.
        (electric-pair--unbalanced-strings-p): New function.
        (electric-pair-string-bound-function): New var.
        (electric-pair-inhibit-if-helps-balance): Decide quote pairing
-       according to `electric-pair--in-unterminated-string-p'
+       according to `electric-pair--in-unterminated-string-p'.
 
 2014-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        Reported by Victor Lau.
        Fix parsing 'var' in AUTOs, msg1294.  Reported by Dominique Chen.
        (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
-       interface-only modules, bug721.  Reported by Dean Hoyt.
+       interface-only modules, bug721.  Reported by Dean Hoyt.
 
 2014-03-26  Glenn Morris  <rgm@gnu.org>
 
        (subword-mode-map): Hollow out.
        (capitalized-words-mode): Define as obsolete alias for
        `subword-mode'.
-       (subword-mode,superword-mode): Tweak documentation to reflect new
+       (subword-mode, superword-mode): Tweak documentation to reflect new
        implementation; call `subword-setup-buffer'.
-       (subword-forward,subword-capitalize): Add underscore to indicate
+       (subword-forward, subword-capitalize): Add underscore to indicate
        unused variable.
        (subword-find-word-boundary-function-table): New constant.
        (subword-empty-char-table): New constant.
 
        * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
        Make it into a proper minor mode.
-       (rectangle--region): (implicitly) rename to rectangle-mark-mode.
+       (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
        (rectangle-mark-mode-map): New keymap.
        (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
 
 
 2013-10-28  Daiki Ueno  <ueno@gnu.org>
 
-       * epa-file.el
-       (epa-file-cache-passphrase-for-symmetric-encryption):
+       * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
        Document that this option has no effect with GnuPG 2.0 (bug#15552).
 
 2013-10-27  Xue Fuqiao  <xfq.free@gmail.com>
        * textmodes/reftex-vars.el (reftex-ref-style-alist):
        Add cleveref macros.
 
-       * textmodes/reftex-parse.el
-       (reftex-locate-bibliography-files): Accept options for
-       bibliography commands.
+       * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
+       Accept options for bibliography commands.
        * textmodes/reftex-vars.el (reftex-bibliography-commands):
        Add addbibresource.  Basic Biblatex support.
 
 2013-04-19  Fabián Ezequiel Gallina  <fgallina@gnu.org>
 
        New faster Imenu implementation (bug#14058).
-       * progmodes/python.el:
-       (python-imenu-prev-index-position):
+       * progmodes/python.el (python-imenu-prev-index-position)
        (python-imenu-format-item-label-function)
        (python-imenu-format-parent-item-label-function)
        (python-imenu-format-parent-item-jump-label-function):
index a474c2611879384ce3a02a2aa7736a2f22332af7..de97b99073565ddccc0a695513b351b58f32b4bd 100644 (file)
@@ -43,7 +43,7 @@
        * dired.c (file_attributes):
        * chartab.c (uniprop_decoder_count, uniprop_encode_count):
        Change expressions of the form sizeof(arr) / sizeof(arr[0])
-       to ARRAYELTS(arr).
+       to ARRAYELTS (arr).
 
 2014-04-02  Daniel Colascione  <dancol@dancol.org>
 
        * alloc.c: Include execinfo.h if available.
        (SUSPICIOUS_OBJECT_CHECKING): New macro; define unconditionally.
        (suspicious_free_record): New structure.
-       (suspicious_objects,suspicious_object_index)
-       (suspicious_free_history, suspicious_free_history_index): New
-       variables.
-       (find_suspicious_object_in_range,detect_suspicious_free)
+       (suspicious_objects, suspicious_object_index)
+       (suspicious_free_history, suspicious_free_history_index):
+       New variables.
+       (find_suspicious_object_in_range, detect_suspicious_free)
        (Fsuspicious_object): New functions.
        (cleanup_vector): Call find_suspicious_object_in_range.
 
        Split gc_sweep into discrete functions for legibility and better
        stack traces.
 
-       * alloc.c (sweep_strings,sweep_vectors): Add NO_INLINE
+       * alloc.c (sweep_strings, sweep_vectors): Add NO_INLINE
        (sweep_vectors): Fix typo in comment.
-       (sweep_conses,sweep_floats,sweep_intervals)
-       (sweep_symbols,sweep_misc,sweep_buffers): New functions.
+       (sweep_conses, sweep_floats, sweep_intervals)
+       (sweep_symbols, sweep_misc, sweep_buffers): New functions.
        (gc_sweep): Call new functions, to which existing functionality is
        moved.
        * fns.c (sweep_weak_hash_tables): Add NO_INLINE.
 
        * alloc.c (lisp_align_malloc, allocate_string_data)
        (allocate_vectorlike): Allow mmap allocation of lisp objects.
-       (pointers_fit_in_lispobj_p,mmap_lisp_allowed_p): New functions.
+       (pointers_fit_in_lispobj_p, mmap_lisp_allowed_p): New functions.
 
 2014-03-21  Eli Zaretskii  <eliz@gnu.org>