/[emacs]/emacs/lisp/ChangeLog
ViewVC logotype

Diff of /emacs/lisp/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7561 by lektu, Fri May 20 16:15:02 2005 UTC revision 1.7562 by lektu, Fri May 20 16:41:36 2005 UTC
# Line 27  Line 27 
27          (org-agenda-add-time-grid-maybe): New function.          (org-agenda-add-time-grid-maybe): New function.
28          (org-agenda): Call `org-agenda-add-time-grid-maybe'.          (org-agenda): Call `org-agenda-add-time-grid-maybe'.
29          (org-table-create): `dotimes' instead of `mapcar'.          (org-table-create): `dotimes' instead of `mapcar'.
30          (org-xor): Simplified implementation.          (org-xor): Simplify implementation.
31          (org-agenda): `inhibit-redisplay' turned on.          (org-agenda): `inhibit-redisplay' turned on.
32          (org-agenda-change-all-lines): Use `org-format-agenda-item' to get          (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
33          a consistent line after a state change.          a consistent line after a state change.
# Line 193  Line 193 
193    
194  2005-05-18  Jay Belanger  <belanger@truman.edu>  2005-05-18  Jay Belanger  <belanger@truman.edu>
195    
196          * calc/calc-help.el (calc-s-prefix-help): Add          * calc/calc-help.el (calc-s-prefix-help):
197          `calc-copy-special-constant' to help string.          Add `calc-copy-special-constant' to help string.
198    
199  2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>  2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>
200    
# Line 207  Line 207 
207    
208  2005-05-18  Carsten Dominik  <dominik@science.uva.nl>  2005-05-18  Carsten Dominik  <dominik@science.uva.nl>
209    
210          * textmodes/reftex-vars.el (reftex-cite-format-builtin): Support          * textmodes/reftex-vars.el (reftex-cite-format-builtin):
211          for jurabib.          Support for jurabib.
212    
213          * textmodes/reftex.el (featurep): Define aliases for overlay          * textmodes/reftex.el (featurep): Define aliases for overlay
214          commands, for XEmacs compatibility, and use these aliases in          commands, for XEmacs compatibility, and use these aliases in
# Line 219  Line 219 
219          (reftex-access-search-path): Use `reftex-uniquify' instead of          (reftex-access-search-path): Use `reftex-uniquify' instead of
220          `reftex-uniq'          `reftex-uniq'
221    
222          * textmodes/reftex-sel.el (reftex-select-unmark): Overlay          * textmodes/reftex-sel.el (reftex-select-unmark):
223          `before-string' property modification enables for Emacs as well.          Overlay `before-string' property modification enables for Emacs as well.
224          (reftex-select-item): Use `reftex-delete-overlay'.          (reftex-select-item): Use `reftex-delete-overlay'.
225          (reftex-select-mark): Use `reftex-make-overlay' and          (reftex-select-mark): Use `reftex-make-overlay' and
226          `reftex-overlay-put'.          `reftex-overlay-put'.
# Line 255  Line 255 
255    
256          * progmodes/prolog.el (inferior-prolog-mode): Doc fix.          * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
257          (prolog-consult-region): Replace `send-string' by          (prolog-consult-region): Replace `send-string' by
258          `process-send-string'; replace `send-region' by          `process-send-string'; replace `send-region' by `process-send-region'.
         `process-send-region'.  
259    
260          * progmodes/delphi.el (delphi-log-msg):          * progmodes/delphi.el (delphi-log-msg):
261          Replace `set-window-dot' by `set-window-point'.          Replace `set-window-dot' by `set-window-point'.
# Line 287  Line 286 
286          loop.  It should also be more efficient, because first it only          loop.  It should also be more efficient, because first it only
287          searches for `:', instead of applying the very complex regexp.          searches for `:', instead of applying the very complex regexp.
288          (makefile-mode): Cancel `font-lock-support-mode', because blocks          (makefile-mode): Cancel `font-lock-support-mode', because blocks
289          to be fontified in one piece can be too long for JIT.  Makefiles          to be fontified in one piece can be too long for JIT.
290          are never *that* big.          Makefiles are never *that* big.
291    
292  2005-05-17  Reiner Steib  <Reiner.Steib@gmx.de>  2005-05-17  Reiner Steib  <Reiner.Steib@gmx.de>
293    
# Line 314  Line 313 
313    
314  2005-05-16  Daniel Pfeiffer  <occitan@esperanto.org>  2005-05-16  Daniel Pfeiffer  <occitan@esperanto.org>
315    
316          * font-lock.el (lisp-font-lock-keywords-1): Set          * font-lock.el (lisp-font-lock-keywords-1):
317          `font-lock-negation-char-face' for [^...] char group.          Set `font-lock-negation-char-face' for [^...] char group.
318          (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).          (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
319    
320          * progmodes/make-mode.el (makefile-dependency-regex): Turn it into          * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
# Line 329  Line 328 
328          might be the same one to be skipped by the initial [^$], leading          might be the same one to be skipped by the initial [^$], leading
329          to an overlooked variable use.          to an overlooked variable use.
330          (makefile-make-font-lock-keywords): Remove two parameters, which          (makefile-make-font-lock-keywords): Remove two parameters, which
331          are now variables that some of the modes set locally.  Handle          are now variables that some of the modes set locally.
332          dependency and rule action matching through functions, because          Handle dependency and rule action matching through functions, because
333          regexps alone match too often.  Dependency matching now comes          regexps alone match too often.  Dependency matching now comes
334          last, so it can check, whether a colon already matched something          last, so it can check, whether a colon already matched something else.
         else.  
335          (makefile-mode): Inform that font-lock improves makefile parsing          (makefile-mode): Inform that font-lock improves makefile parsing
336          capabilities.          capabilities.
337          (makefile-match-dependency, makefile-match-action): New functions.          (makefile-match-dependency, makefile-match-action): New functions.
# Line 418  Line 416 
416          (reftex-bib-sort-year-reverse, reftex-format-citation):          (reftex-bib-sort-year-reverse, reftex-format-citation):
417          * textmodes/reftex-parse.el (reftex-init-section-numbers)          * textmodes/reftex-parse.el (reftex-init-section-numbers)
418          (reftex-section-number):          (reftex-section-number):
419          * textmodes/texinfmt.el (texinfo-paragraphindent): Replace          * textmodes/texinfmt.el (texinfo-paragraphindent):
420          `string-to-int' by `string-to-number'.          Replace `string-to-int' by `string-to-number'.
421    
422          * international/latexenc.el: Add page marker to force the "Local          * international/latexenc.el: Add page marker to force the "Local
423          Variables:" string out of the last page.          Variables:" string out of the last page.
# Line 527  Line 525 
525          (tramp-pre-connection): Add parameter CHUNKSIZE.  Make local          (tramp-pre-connection): Add parameter CHUNKSIZE.  Make local
526          variable `tramp-chunksize'.  Change callees.          variable `tramp-chunksize'.  Change callees.
527          (tramp-open-connection-setup-interactive-shell): Check remote host          (tramp-open-connection-setup-interactive-shell): Check remote host
528          for buggy `send-process-string' implementation.  Set          for buggy `send-process-string' implementation.
529          `tramp-chunksize' if found.  Reported by Michael Kifer          Set `tramp-chunksize' if found.  Reported by Michael Kifer
530          <kifer@cs.sunysb.edu> (and a lot of other people all the years).          <kifer@cs.sunysb.edu> (and a lot of other people all the years).
531          (tramp-handle-shell-command): `insert-buffer' cannot be used          (tramp-handle-shell-command): `insert-buffer' cannot be used
532          because the contents of the Tramp buffer is changed before          because the contents of the Tramp buffer is changed before
533          insertion (`expand-file' and alike).  Reported by Fr,Ai(Bd,Ai(Bric Bothamy          insertion (`expand-file' and alike).  Reported by Fr,Ai(Bd,Ai(Bric Bothamy
534          <frederic.bothamy@free.fr>.          <frederic.bothamy@free.fr>.
535          (tramp-set-auto-save): Actions should be done for Tramp file name          (tramp-set-auto-save): Actions should be done for Tramp file name
536          handler only.  Ange-FTP has its own auto-save mechanism.  Reported          handler only.  Ange-FTP has its own auto-save mechanism.
537          by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.          Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
538          (tramp-set-auto-save-file-modes): Set file modes of          (tramp-set-auto-save-file-modes): Set file modes of
539          `buffer-auto-save-file-name' to ?\600 as fallback solution.          `buffer-auto-save-file-name' to ?\600 as fallback solution.
540          Reported by Ferenc Wagner <wferi@tba.elte.hu>.          Reported by Ferenc Wagner <wferi@tba.elte.hu>.
541          (tramp-bug): Remove obsolete variable.          (tramp-bug): Remove obsolete variable.
542          (tramp-append-tramp-buffers): Rewrite partly.  More suitable check          (tramp-append-tramp-buffers): Rewrite partly.  More suitable check
543          for presence of `mml-mode'.  Make it running for older Emacsen as          for presence of `mml-mode'.  Make it running for older Emacsen as well.
         well.  
544    
545  2005-05-14  John Paul Wallington  <jpw@pobox.com>  2005-05-14  John Paul Wallington  <jpw@pobox.com>
546    
# Line 595  Line 592 
592    
593  2005-05-13  Matt Hodges  <MPHodges@member.fsf.org>  2005-05-13  Matt Hodges  <MPHodges@member.fsf.org>
594    
595          * tmm.el (tmm-get-keymap): Include only active menus and menu          * tmm.el (tmm-get-keymap): Include only active menus and menu items.
         items.  
596    
597          * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.          * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
598    
599  2005-05-13  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>  2005-05-13  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>
600    
601          * dired.el (dired-mode): make-variable-buffer-local =>          * dired.el (dired-mode): make-variable-buffer-local =>
602          make-local-variable          make-local-variable.
603    
604  2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>  2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
605    

Legend:
Removed from v.1.7561  
changed lines
  Added in v.1.7562

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26