* view.el (view-mode-enable): Don't define Helper-return-blurb if
[bpt/emacs.git] / lisp / ChangeLog
1 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
2
3 * view.el (view-mode-enable): Don't define Helper-return-blurb if
4 it's not needed.
5
6 2009-07-25 Eli Zaretskii <eliz@gnu.org>
7
8 Fix Bug#3888:
9
10 * w32-vars.el (x-select-enable-clipboard): Doc fix.
11
12 * term/pc-win.el (x-display-name, x-colors)
13 (x-select-enable-clipboard, x-select-text): Doc fix.
14
15 * term/common-win.el (x-display-name, x-colors): Doc fix.
16
17 * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
18 (xw-defined-colors): Doc fix.
19
20 * w32-fns.el (x-select-text, x-setup-function-keys)
21 (x-get-selection, x-set-selection): Doc fix.
22
23 * term/x-win.el (x-select-text, x-setup-function-keys)
24 (x-select-enable-clipboard, xw-defined-colors): Doc fix.
25
26 * select.el (x-set-selection): Doc fix.
27
28 2009-07-25 Michael Albinus <michael.albinus@gmx.de>
29
30 * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
31 instead of "IsNSSSupportAvailable". Avahi ought to work also when
32 "IsNSSSupportAvailable" method is not available. Reported by
33 Steve Youngs <steve@sxemacs.org>.
34
35 2009-07-24 Kenichi Handa <handa@m17n.org>
36
37 * international/characters.el: Fix setting of category ?C, ?|, ?K,
38 and ?H. Fix setting of case for Latin Extended and Greek
39 Extended.
40 (build-unicode-category-table): Fix range checks.
41
42 2009-07-24 Dan Nicolaescu <dann@ics.uci.edu>
43
44 * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
45 the buffer we try to sync is current when calling
46 vc-resynch-buffer.
47
48 * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
49 not show up to date files.
50
51 2009-07-24 Glenn Morris <rgm@gnu.org>
52
53 * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
54 Add autoload cookies. If necessary, initialize.
55 (elint-log): Handle non-file buffers.
56 (elint-initialize): Add optional argument to reinitialize.
57 (elint-find-builtin-variables): Save excursion.
58
59 2009-07-23 Dan Nicolaescu <dann@ics.uci.edu>
60
61 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
62 for Lint.
63
64 2009-07-22 Dan Nicolaescu <dann@ics.uci.edu>
65
66 * vc.el (vc-print-log-internal): New function, split out from ...
67 (vc-print-log): ... here.
68 (vc-dir-move-to-goal-column): Declare.
69
70 * vc-git.el (vc-git-add-signoff): New variable.
71 (vc-git-checkin): Use it.
72 (vc-git-toggle-signoff): New function.
73 (vc-git-extra-menu-map): Bind it to menu.
74 (vc-git--run-command-string): Accept a nil FILE argument.
75 (vc-git-stash-list): New function.
76 (vc-git-dir-extra-headers): Use it.
77
78 2009-07-23 Glenn Morris <rgm@gnu.org>
79
80 * help-fns.el (describe-variable): Describe ignored and risky local
81 variables in a similar way to that in which we describe safe ones.
82
83 * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
84 (byte-compile-output-file-form, byte-compile-output-docform)
85 (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
86 Give some more local variables with common names a "bytecomp-" prefix,
87 so as not to shadow things during compilation.
88 * emacs-lisp/cl-macs.el (load-time-value)
89 * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
90 `outbuffer' to `bytecomp-outbuffer'.
91
92 * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
93 since the next two variables cover them automatically now.
94 (elint-builtin-variables, elint-autoloaded-variables): New.
95 (elint-unknown-builtin-args): Remove all members, since they can be
96 parsed automatically now.
97 (elint-extra-errors): New.
98 (elint-env-add-env, elint-env-add-macro): Use cadr.
99 (elint-current-buffer): Use or. Change final message.
100 (elint-get-top-forms): Use line-end-position.
101 (elint-init-env): Use cadr. Handle autoload, declare-function,
102 and defalias.
103 (elint-add-required-env): Doc fix. Use or. Standardize error.
104 (regexp-assoc): Remove unused function.
105 (elint-top-form): Set elint-current-pos, to record the start of the
106 top-level form, for compilation-mode.
107 (elint-form): Trap errors in macro expansion. Use dolist.
108 (elint-unbound-variable): Use elint-builtin-variables and
109 elint-autoloaded-variables.
110 (elint-get-args): Use cadr, or.
111 (elint-check-cond-form): Use dolist, cadr.
112 (elint-check-condition-case-form): Doc fix. Use cadr.
113 Use elint-extra-errors.
114 (elint-log): New function.
115 (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
116 Distinguish errors and warnings.
117 (elint-log-message): Use with-current-buffer. Inhibit read-only.
118 Use a bytecomp-style format.
119 (elint-clear-log): Preserve default-directory. Inhibit read-only.
120 (elint-get-log-buffer): Use compilation mode. Disable undo.
121 Don't truncate lines.
122 (elint-initialize): Set builtin and autoloaded variable lists.
123 Only process elint-unknown-builtin-args if non-nil.
124 (elint-find-builtin-variables, elint-find-autoloaded-variables):
125 New functions.
126 (elint-find-builtin-args): Doc fix. Handle "BODY...)".
127
128 2009-07-22 Kevin Ryde <user42@zip.com.au>
129
130 * net/newst-backend.el (newsticker--parse-atom-1.0)
131 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
132 (newsticker--parse-rss-1.0):
133 * progmodes/idlwave.el (idlwave-mode):
134 * progmodes/idlw-shell.el (idlwave-shell-mode):
135 * progmodes/vera-mode.el (vera-mode):
136 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
137 * progmodes/vhdl-mode.el (vhdl-mode):
138 * textmodes/table.el (table-generate-source)
139 (table--warn-incompatibility):
140 Hyperlink urls in docstrings with URL `...'.
141
142 2009-07-22 Glenn Morris <rgm@gnu.org>
143
144 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
145 * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
146 * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
147 Remove leading * from defcustom docs.
148
149 * simple.el (blink-matching-paren-distance): Bump to 100k. (Bug#3889)
150
151 * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
152 defcustom doc.
153 (list-load-path-shadows): Optionally, just return shadows as a string.
154
155 * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
156
157 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
158
159 * mail/rmailedit.el (rmail-edit-mode): Use
160 auto-save-include-big-deletions.
161
162 * mail/rmail.el (rmail-variables): Use
163 auto-save-include-big-deletions.
164
165 * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
166 changes.
167
168 2009-07-21 Jay Belanger <jay.p.belanger@gmail.com>
169
170 * calc/calc.el (calc-undo-length): New variable.
171 (calc-quit): Truncate rather than eliminate `calc-undo-list'.
172
173 2009-07-21 Richard Stallman <rms@gnu.org>
174
175 * files.el (auto-save-mode): Handle buffer-save-size = -2
176 for toggling mode.
177
178 2009-07-21 Glenn Morris <rgm@gnu.org>
179
180 * textmodes/ispell.el (ispell-looking-back): Update declaration.
181
182 * calendar/todo-mode.el (calendar-current-date): Update declaration.
183
184 * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
185 silence compiler. Instead...
186 (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
187 (ps-print-ensure-fontified): Update for above function name changes.
188
189 * printing.el (pr-mh-get-msg-num, pr-mh-show)
190 (pr-mh-start-of-uncleaned-message): Remove aliases only used to
191 silence compiler. Instead...
192 (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
193 (mh-show-buffer): Only define for compiler.
194 (pr-mh-current-message): Update for above function name changes.
195
196 * files.el (abort-if-file-too-large): Explicitly pass `filename'
197 as an argument.
198 (find-file-noselect, insert-file-1): Update for above change.
199
200 * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
201
202 * mail/mailclient.el (mailclient-send-it): Fix message.
203
204 * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
205 (edebug-eval): Check cl-debug-env is bound.
206 (print-level, print-circle): Don't redefine built-in variables.
207
208 * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
209 (custom-print-vectors): Remove old comments from doc.
210
211 * emerge.el (menu-bar-emerge-menu): Remove unused variable.
212 (emerge-version): Make the variable an obsolete alias for the
213 emacs-version variable. Make the function obsolete.
214 (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
215 Emerge options, rather than merging in into the main Options menu.
216 (emerge-options-menu): Adjust menu text. Use buttons for skip prefers
217 and auto advance modes. Disable edit/fast items when not relevant.
218
219 2009-07-20 Dan Nicolaescu <dann@ics.uci.edu>
220
221 * term/vt420.el (terminal-init-vt420): Fix typo.
222
223 2009-07-20 Sam Steingold <sds@gnu.org>
224
225 * progmodes/ada-mode.el (compile-auto-highlight): Remove the
226 variable (removed from compile.el on 2004-03-11).
227
228 2009-07-20 Chong Yidong <cyd@stupidchicken.com>
229
230 * files.el (hack-local-variables-filter): Fix last change.
231
232 2009-07-19 Juri Linkov <juri@jurta.org>
233
234 * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
235 (dir-local-variables-alist): New buffer-local variable.
236 (hack-local-variables-filter): If variable is not dir-local,
237 i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
238 because file-local overrides dir-local.
239 (c-postprocess-file-styles)<declare-function>:
240 Remove obsolete declaration.
241 (hack-dir-local-variables): Add dir-local variable/value pair to
242 `dir-local-variables-alist' and remove duplicates. Doc fix.
243
244 * help-fns.el (describe-variable): Add information about
245 file-local and dir-local variables.
246
247 2009-07-19 Chong Yidong <cyd@stupidchicken.com>
248
249 * files.el (hack-local-variables-filter): Rewrite.
250
251 2009-07-19 Glenn Morris <rgm@gnu.org>
252
253 * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
254 Silence compiler by only defining on XEmacs.
255
256 * international/mule.el (auto-coding-regexp-alist): Only match
257 BABYL... at the start of buffer, not of lines. (Bug#3790)
258
259 * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
260 non-calendar buffers (Bug#3862). Restore "not on a date" message.
261 (cal-menu-context-mouse-menu): Doc fix.
262
263 * desktop.el (desktop-buffers-not-to-save): Set :version tag.
264
265 * simple.el (mail-user-agent): Doc fix. Set :version tag.
266
267 2009-07-18 Juri Linkov <juri@jurta.org>
268
269 * info.el: Virtual Info keyword finder.
270 (add-to-list)<Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
271 (Info-finder-file): New variable.
272 (Info-finder-find-file): New function.
273 (finder-known-keywords, finder-package-info)
274 (find-library-name, lm-commentary): Use defvar and
275 declare-function to silence compiler warnings.
276 (Info-finder-find-node): New function.
277 (info-finder): New command.
278
279 * subr.el (process-kill-buffer-query-function): New function.
280 (add-hook)<kill-buffer-query-functions>: Add hook
281 `process-kill-buffer-query-function'.
282
283 2009-07-18 Alan Mackenzie <acm@muc.de>
284
285 * progmodes/cc-mode.el (c-before-hack-hook),
286 (c-postprocess-file-styles): Give invocation of `c-set-style'
287 DONT-OVERRIDE parameter of t. Already set style variables will
288 thus not be overridden by style settings given by `c-file-syle'.
289
290 * files.el (hack-local-variables-filter): Remove entries with
291 duplicate keys from `file-local-variables-alist'.
292
293 2009-07-18 Eli Zaretskii <eliz@gnu.org>
294
295 * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
296 x-set-selection if display-selections-p returns nil for the
297 current frame.
298
299 2009-07-18 Chong Yidong <cyd@stupidchicken.com>
300
301 * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
302
303 2009-07-18 Eli Zaretskii <eliz@gnu.org>
304
305 * desktop.el (desktop-buffers-not-to-save): Default value is nil.
306 Accept nil in addition to a regexp.
307 (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
308 Accept nil in addition to a regexp.
309 (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
310 buffers that have an associated file. Handle nil values of
311 desktop-buffers-not-to-save and desktop-files-not-to-save.
312 (Bug#3833)
313
314 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
315 (x-disown-selection-internal): New functions.
316
317 2009-07-18 Nick Roberts <nickrob@snap.net.nz>
318
319 * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
320 warning.
321 (gdb-breakpoints-header): Move forward to avoid compiler warning.
322 (gdb-make-header-line-mouse-map): Remove duplicate definition.
323
324 2009-07-18 David De La Harpe Golden <david@harpegolden.net>
325
326 * simple.el (set-mark): Revert last change.
327
328 2009-07-17 Tassilo Horn <tassilo@member.fsf.org>
329
330 * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
331 rendering of pngs is not possible instead of messaging a long
332 description.
333
334 2009-07-17 David De La Harpe Golden <david@harpegolden.net>
335
336 * w32-fns.el (x-selection-owner-p): New function.
337
338 * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
339 (mouse-yank-at-click, mouse-yank-primary): If
340 select-active-regions is non-nil, deactivate the mark before
341 insertion.
342
343 * simple.el (deactivate-mark, set-mark): Only save selection if we
344 own it.
345
346 2009-07-17 Kenichi Handa <handa@m17n.org>
347
348 * case-table.el (describe-buffer-case-table): Fix for the case
349 that KEY is a cons.
350
351 2009-07-16 Dan Nicolaescu <dann@ics.uci.edu>
352
353 * vc-rcs.el (vc-rcs-find-file-hook):
354 * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
355
356 2009-07-16 Michael Albinus <michael.albinus@gmx.de>
357
358 * net/tramp.el (tramp-wait-for-output): Handle the case when
359 commands do not return a newline but a null byte before the shell
360 prompt. (Bug#3858)
361
362 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
363
364 * term/ns-win.el (ns-set-alpha): Don't declare.
365 (ns-set-background-alpha): Remove function.
366
367 2009-07-16 Kevin Ryde <user42@zip.com.au>
368
369 * emacs-lisp/copyright.el (copyright-update): Save match-data across
370 y-or-n-p, for safety.
371
372 2009-07-16 Richard Stallman <rms@gnu.org>
373
374 * files.el (auto-save-mode): If buffer-saved-size is -2,
375 don't clobber it.
376
377 * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
378 (rmail-retry-ignored-headers): Add more uninteresting fields.
379
380 2009-07-15 Jari Aalto <jari.aalto@cante.net>
381
382 * net/rcirc.el (rcirc): Use history variables.
383 (rcirc-server-name-history, rcirc-nick-name-history)
384 (rcirc-server-port-history): New variables.
385
386 2009-07-15 Kenichi Handa <handa@m17n.org>
387
388 * international/mule-cmds.el (set-language-environment-charset):
389 If coding-system-charset-list returns `iso-2022' or `emacs-mule',
390 ignore them.
391
392 * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
393 Delete unibyte-display.
394
395 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
396
397 * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
398
399 2009-07-15 Chong Yidong <cyd@stupidchicken.com>
400
401 * simple.el (deactivate-mark): Optional argument FORCE.
402 (set-mark): Use deactivate-mark.
403
404 * info.el (Info-search): No need to check transient-mark-mode
405 before calling deactivate-mark.
406
407 * select.el (x-set-selection): Doc fix.
408 (x-valid-simple-selection-p): Allow buffer values.
409 (xselect--selection-bounds): Handle buffer values. Suggested by
410 David De La Harpe Golden.
411
412 * mouse.el (mouse-set-region, mouse-drag-track): Call
413 copy-region-as-kill before setting the mark, to let
414 select-active-regions work.
415
416 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
417
418 * simple.el (deactivate-mark): If select-active-regions is
419 non-nil, copy the selection data into a string.
420 (activate-mark): If select-active-regions is non-nil, set the
421 selection to the current buffer.
422 (set-mark): Update selection if select-active-regions is non-nil.
423
424 * select.el (x-valid-simple-selection-p): Allow buffer values.
425
426 2009-07-14 Stefan Monnier <monnier@iro.umontreal.ca>
427
428 * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
429 and more featureful message-mode.
430
431 2009-07-14 Chong Yidong <cyd@stupidchicken.com>
432
433 * select.el (x-set-selection): Doc fix.
434 (x-valid-simple-selection-p): Disallow selection data consisting
435 of a list or cons of integers, since that is not used.
436 (xselect--selection-bounds, xselect--int-to-cons): New functions.
437 (xselect-convert-to-string, xselect-convert-to-length)
438 (xselect-convert-to-filename, xselect-convert-to-charpos)
439 (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
440
441 2009-07-14 Dmitry Dzhus <dima@sphinx.net.ru>
442
443 * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
444 output in -break-info command (Emacs bug #3794).
445
446 2009-07-14 Glenn Morris <rgm@gnu.org>
447
448 * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
449 (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
450 (edebug-print-length, edebug-print-level, edebug-print-circle)
451 (edebug-sit-for-seconds, edebug-view-outside)
452 (edebug-bounce-point, edebug-set-global-break-condition)
453 (edebug-Go-nonstop-mode, edebug-trace-mode)
454 (edebug-Trace-fast-mode, edebug-continue-mode)
455 (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
456 (edebug-visit-eval-list): Doc fixes.
457
458 * subr.el (def-edebug-spec): Doc fix.
459
460 2009-07-14 Kenichi Handa <handa@m17n.org>
461
462 * international/characters.el: Fix setting of category ?C.
463
464 2009-07-13 Jan Djärv <jan.h.d@swipnet.se>
465
466 * term/ns-win.el (x-select-font): defailias x-select-font to
467 ns-popup-font-panel instead of generate-fontset-menu.
468
469 2009-07-12 Eli Zaretskii <eliz@gnu.org>
470
471 * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
472
473 2009-07-12 Peter Jolly <peter@jollys.org> (tiny change)
474
475 * arc-mode.el (archive-find-type): Allow for a PK00 string before
476 the PK\003\004 header (Bug#3770).
477
478 2009-07-12 Guanpeng Xu <herberteuler@hotmail.com>
479
480 * pcomplete.el (pcomplete-comint-setup): Check for
481 shell-dynamic-complete-filename too.
482
483 2009-07-11 Chong Yidong <cyd@stupidchicken.com>
484
485 * simple.el (temporary-goal-column): Change the value for
486 line-move-visual to a cons cell.
487 (line-move-visual): Record or set the window hscroll, if
488 necessary (Bug#3494).
489 (line-move-1): Handle cons value of temporary-goal-column.
490
491 2009-07-11 Kenichi Handa <handa@m17n.org>
492
493 * international/mule-diag.el (describe-character-set): Don't show
494 width.
495
496 2009-07-10 Sam Steingold <sds@gnu.org>
497
498 * progmodes/compile.el (compilation-mode-font-lock-keywords):
499 Omake sometimes indents the errors it prints, so allow all
500 regexps to start with spaces.
501
502 2009-07-10 Eli Zaretskii <eliz@gnu.org>
503
504 * cus-edit.el (customize-changed-options-previous-release):
505 Bump value to 22.1. (Bug#3804)
506
507 2009-07-08 Sam Steingold <sds@gnu.org>
508
509 * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
510 to be a cons cell (test . ignored-directory) to selectively ignore
511 some directories depending on the location of the search.
512
513 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
514
515 * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
516 remote user is root, on the local host.
517 (tramp-local-host-p): Either the local user or the remote user
518 must be root. (Bug#3771)
519
520 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
521
522 * progmodes/gdb-mi.el (gdb): Remove description of
523 gdb-use-separate-io-buffer.
524 (menu): Don't allow toggling of or enable
525 gdb-use-separate-io-buffer from menubar.
526
527 2009-07-08 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
528
529 * mail/unrmail.el (unrmail): Make sure the message ends with two
530 newlines (Bug#3769).
531
532 2009-07-08 Glenn Morris <rgm@gnu.org>
533
534 * calendar/calendar.el (calendar-current-date): Rework previous change.
535
536 2009-07-08 Ed Reingold <reingold@emr.cs.iit.edu>
537
538 * calendar/calendar.el (calendar-current-date):
539 Add an optional argument giving an offset from today.
540
541 2009-07-08 Glenn Morris <rgm@gnu.org>
542
543 * tutorial.el (tutorial--describe-nonstandard-key):
544 Adjust the message for when a key has been unbound.
545 (help-with-tutorial): Hide the arch-tag.
546
547 2009-07-08 Kenichi Handa <handa@m17n.org>
548
549 * international/fontset.el (setup-default-fontset): For each
550 script, append (not set) font-specs.
551
552 * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
553 docstring.
554
555 2009-07-08 Nick Roberts <nickrob@snap.net.nz>
556
557 * progmodes/gdb-mi.el (gdb-init-1): Move sending
558 -data-list-register-names to ...
559 (gdb-starting): ... here because GDB 7.0 requires execution to
560 have started when using this MI command.
561 (gdb-set-header): New function to distinguish select and
562 unselected tabs in gdb buffers.
563 (gdb-propertize-header): New macro that uses gdb-set-header.
564 (gdb-breakpoints-header, gdb-locals-header): Use it.
565 (gdb-disassembly-mode-map): Add keybinding to kill buffer.
566
567 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
568
569 * Makefile.in (ELCFILES): Remove fadr.elc.
570
571 2009-07-07 Dmitry Dzhus <dima@sphinx.net.ru>
572
573 * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
574 may contain frame information, so `string-match' should be used.
575 (gdb-update): Disassembly is invalidated through
576 `gdb-get-selected-frame'.
577 (gdb-pad-string): New function to pad string with spaces.
578 (gdb-invalidate-disassembly): Invalidate only if the buffer
579 exists.
580 (gdb-disassembly-handler-custom): Column alignment.
581 (gdb-disassembly-place-breakpoints): Clear old breakpoints before
582 placing new ones.
583 (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
584 end of line, too.
585 (gdb-frame-handler): Match convention to for disassembly buffer
586 mode name.
587 (gdb-stack-list-frames-handler): Rewritten without regexps.
588 (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
589 not highlight breakpoints without line information.
590 (gdb-input): Add trailing newline to command.
591
592 * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
593 buffer properly.
594 (gdb-breakpoints-list-handler-custom): Replacement for
595 `gdb-break-list-handler'. Using real parser instead of regexps
596 now.
597 (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
598 Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
599 to place breakpoints.
600 (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
601 functions.
602 (gdb-disassembly-handler-custom): Show overlay arrow.
603 (gdb-disassembly-place-breakpoints): Show breakpoints in
604 disassembly buffer.
605 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
606 (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
607 instead of parsing breakpoints buffer. Fixed old menu references
608 in `gud-menu-map'.
609
610 * fadr.el: Remove.
611
612 * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el
613 (gdb-memory-address): New variable which holds top address of
614 memory page shown in memory buffer
615 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
616 customization variables.
617 New functions:
618 (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
619 display the memory buffer.
620 (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
621 buffer display parameters.
622 (def-gdb-memory-format, gdb-memory-format-binary)
623 (gdb-memory-format-octal, gdb-memory-format-unsigned)
624 (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
625 Functions for setting memory buffer format.
626 (gdb-memory-unit-word, gdb-memory-unit-halfword)
627 (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
628 unit size used in memory buffer.
629 (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
630 to next/previous page of memory buffer.
631 Now using (bindat-get-field) instead of fadr functions.
632
633 2009-07-07 Sam Steingold <sds@gnu.org>
634
635 * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
636 non-top-level files.
637
638 2009-07-07 Kenichi Handa <handa@m17n.org>
639
640 * international/mule-cmds.el (reset-language-environment): Put
641 the highset priority to the charset iso-8859-1.
642
643 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
644
645 * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
646 to the end of the line when locating the block (Bug#700).
647
648 2009-07-06 Michael Albinus <michael.albinus@gmx.de>
649
650 * net/tramp.el (tramp-handle-write-region): Flush file properties
651 in case of short track.
652
653 2009-07-07 Michael McNamara <mac@mail.brushroad.com>
654
655 * verilog-mode.el (verilog-error-regexp-emacs-alist): Coded custom
656 representation of verilog error regular expressions to work with
657 Emacs-22's new format.
658 (verilog-error-regexp-xemacs-alist): Coded custom representation
659 of verilog error regular expressions to work with XEmacs format
660 (verilog-error-regexp-add-xemacs): Hook routine to install verilog
661 error recognition into XEmacs.
662 (verilog-error-regexp-add-emacs): Hook routine to install verilog
663 error recognition into Emacs-22.
664
665 2009-07-06 Chong Yidong <cyd@stupidchicken.com>
666
667 * woman.el: Remove stand-alone closing parentheses.
668 (woman-file-name, woman2-format-paragraphs)
669 (woman-leave-blank-lines): Code cleanup.
670 (woman-use-own-frame): Change default to nil.
671 (woman-italic, woman-bold, woman-unknown, woman-addition): Change
672 defaults to inherit from default faces.
673 (woman2-process-escapes): Consume the newline after a stand-alone
674 filler character (Bug#3651).
675
676 2009-07-06 Glenn Morris <rgm@gnu.org>
677
678 * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
679 (top-level): Move provide to the end.
680 (ffap): Remove defunct URL from custom group.
681
682 * subr.el (eval-after-load): Doc fix.
683
684 2009-07-06 Vincent Belaïche <vincent.belaiche@gmail.com>
685
686 * calc/calc-embed.el (calc-embedded-make-info): Don't force when
687 `calc-embedded-word' is called twice.
688
689 2009-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
690
691 * files.el (find-alternate-file-other-window, find-alternate-file):
692 Obey confirm-nonexistent-file-or-buffer.
693
694 2009-07-05 Michael Albinus <michael.albinus@gmx.de>
695
696 * dired-aux.el (dired-show-file-type): Handle remote files.
697
698 2009-03-22 Jari Aalto <jari.aalto@cante.net>
699
700 * desktop.el (desktop-globals-to-save):
701 Add file-name-history (Bug#2750).
702
703 2009-07-05 Chong Yidong <cyd@stupidchicken.com>
704
705 * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
706
707 2009-07-04 Johan Bockgård <bojohan@gnu.org>
708
709 * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
710 property on entire argument since this is what eshell-lisp-command
711 expects.
712
713 2009-07-03 Michael Albinus <michael.albinus@gmx.de>
714
715 * net/tramp-gvfs.el (tramp-gvfs-methods)
716 (tramp-gvfs-zeroconf-domain)
717 (tramp-bluez-discover-devices-timeout): Add version flag.
718 (tramp-gvfs-handler-mounted-unmounted)
719 (tramp-gvfs-connection-mounted-p): Polish handling of
720 incompatibilities between GVFS 0.2 and 1.0.
721
722 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
723
724 * cus-start.el (all): Add make-pointer-invisible.
725
726 2009-07-03 Jay Belanger <jay.p.belanger@gmail.com>
727
728 * calc-math.el (math-use-emacs-fn): Make sure that the number is
729 formatted correctly.
730
731 2009-07-02 Juri Linkov <juri@jurta.org>
732
733 * info.el: Virtual Info files and nodes.
734 (Info-virtual-files, Info-virtual-nodes): New variables.
735 (Info-current-node-virtual): New variable.
736 (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
737 New functions.
738 (Info-file-supports-index-cookies): Use Info-virtual-file-p
739 to check for a virtual file instead of checking a fixed list
740 of node names.
741 (Info-find-file): Use Info-virtual-fun and Info-virtual-call
742 instead of ad-hoc processing of "dir" and (apropos history toc).
743 (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
744 instead of ad-hoc processing of "dir" and (apropos history toc).
745 Reread a file when moving from a virtual node.
746 (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
747 (Info-directory-toc-nodes, Info-directory-find-file)
748 (Info-directory-find-node): New functions.
749 (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
750 (Info-history): Move part of code to
751 `Info-history-find-node'.
752 (Info-history-toc-nodes, Info-history-find-file)
753 (Info-history-find-node): New functions.
754 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
755 (Info-toc): Move part of code to `Info-toc-find-node'.
756 (Info-toc-find-node): New function.
757 (Info-toc-insert): Rename from `Info-insert-toc'. Don't insert
758 the current Info file name to references because now the node
759 "*TOC*" belongs to the same Info manual.
760 (Info-toc-build): Rename from `Info-build-toc'.
761 (Info-toc-nodes): Rename input argument `file' to `filename'.
762 Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
763 instead of ad-hoc processing of ("dir" apropos history toc).
764 (Info-index-nodes): Use Info-virtual-file-p
765 to check for a virtual file instead of checking a fixed list
766 of node names.
767 (Info-index-node): Add check for `Info-current-node-virtual'.
768 Raise `save-match-data' higher up the tree to contain
769 `search-forward' too (bug fix).
770 (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
771 (Info-virtual-index-nodes): New variable.
772 (Info-virtual-index-find-node, Info-virtual-index): New functions.
773 (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
774 (Info-apropos-file, Info-apropos-nodes): New variables.
775 (Info-apropos-toc-nodes, Info-apropos-find-file)
776 (Info-apropos-find-node, Info-apropos-matches): New functions.
777 (info-apropos): Move part of code to `Info-apropos-find-node' and
778 `Info-apropos-matches'.
779 (Info-mode-map): Bind "I" to `Info-virtual-index'.
780 (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
781 for a virtual file instead of checking a fixed list of node names.
782
783 * simple.el (async-shell-command): New command.
784
785 * bindings.el (esc-map): Bind "&" to `async-shell-command'.
786
787 * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
788 instead of `mount-info'.
789
790 2009-07-02 Michael Albinus <michael.albinus@gmx.de>
791
792 * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
793 (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
794
795 2009-07-02 Kenichi Handa <handa@m17n.org>
796
797 * international/mule.el (set-keyboard-coding-system): Force *-unix
798 coding-system to avoid eol conversion.
799
800 2009-07-01 Michael Albinus <michael.albinus@gmx.de>
801
802 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
803 Add handler for `process-file', `shell-command' and
804 `start-file-process'.
805 (tramp-gvfs-handle-shell-command)
806 (tramp-gvfs-handle-start-file-process)
807 (tramp-gvfs-handle-process-file): New defuns.
808 (tramp-synce-list-devices): Simplify check for existence of property.
809
810 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
811
812 * startup.el (command-line-x-option-alist): Add -mm and --maximized.
813
814 2009-07-01 Eduard Wiebe <usenet@pusto.de> (tiny change)
815
816 * language/korean.el (set-language-info-alist): Add korean-cp949,
817 cp949 to spec.
818
819 2009-07-01 Kenichi Handa <handa@m17n.org>
820
821 * Makefile.in (ELCFILES): Delete encoded-kb.elc.
822
823 * international/encoded-kb.el: Deleted.
824
825 * international/mule.el (set-keyboard-coding-system): Perform the
826 necessary setup here instead of calling encoded-kbd-setup-display.
827
828 2009-07-01 Glenn Morris <rgm@gnu.org>
829
830 * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
831
832 2009-07-01 Evangelos Evangelou <vangelis@email.unc.edu> (tiny change)
833
834 * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)". (Bug#3730)
835
836 2009-06-30 Michael Albinus <michael.albinus@gmx.de>
837
838 * net/tramp.el (tramp-do-copy-or-rename-file-directly):
839 Handle also the 'rename case, when setting file modes. (Bug#3712)
840 (tramp-default-file-modes) Remove execute permissions.
841
842 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
843 (top): Add a default for "synce" in `tramp-default-user-alist'.
844 Add completion function for "synce" method.
845 (tramp-hal-service, tramp-hal-path-manager)
846 (tramp-hal-interface-manager, tramp-hal-interface-device):
847 New defconst.
848 (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
849 (tramp-synce-list-devices, tramp-synce-parse-device-names):
850 New defuns.
851
852 * net/trampver.el: Update release number.
853
854 2009-06-30 Kenichi Handa <handa@m17n.org>
855
856 * international/fontset.el (setup-default-fontset): Add CJK fonts
857 for symbols and the other miscellaneous characters.
858
859 * language/korea-util.el (setup-korean-environment-internal):
860 Make char-width-table suitable for Korean environments.
861 (exit-korean-environment): Cancel above.
862
863 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
864 ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
865 setup-funcion to make char-widht-table suitable for respective
866 environments, and an exit-function to cancel that.
867
868 * language/japan-util.el (setup-japanese-environment-internal):
869 Call use-cjk-char-width-table with arg `ja_JP'.
870
871 * international/characters.el (cjk-char-width-table): Delete it.
872 (cjk-char-width-table-list): New variable.
873 (use-cjk-char-width-table): New arg local-name.
874 (use-default-char-width-table): Fix for the case that Emacs is
875 already using the default char-width-table.
876
877 2009-06-29 Michael Albinus <michael.albinus@gmx.de>
878
879 * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
880 modes mandatory. (Bug#3712)
881
882 2009-06-29 Alan Mackenzie <acm@muc.de>
883
884 * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
885 correction between the visible width of TABs and their number of bytes.
886
887 2009-06-29 Chong Yidong <cyd@stupidchicken.com>
888
889 * server.el (server-buffer-done): Prevent kill-buffer from
890 prompting by clearing the buffer modification flag (Bug#3696).
891
892 2009-06-28 Michael McNamara <mac@mail.brushroad.com>
893
894 * verilog-mode.el (verilog-beg-of-statement)
895 (verilog-endcomment-reason-re): Support unique case and priority case.
896 (verilog-basic-complete-re): Support localparam lineup.
897 (verilog-beg-of-statement-1): Fix for robustness, unique case.
898 (verilog-set-auto-endcomments): Fix for unique case, always_comb
899 commenting.
900 (verilog-leap-to-case-head): Now support *nested* unique &
901 priority case statements.
902 (verilog-auto-lineup): Make just declarations the default (as it
903 had been).
904 (verilog-leap-to-case-head): Support priority/unique case statements.
905 (verilog-auto-lineup): Rework to give users radio buttons to
906 select the various styles of automatic lineup
907 (verilog-error-regexp-alist): Rework to support the XEmacs style
908 of error regular expressions from compilers, lint tools &
909 simulators. Note that GNU Emacs has made it impossible for a mode
910 to load such things.
911 (electric-verilog-terminate-line, verilog-indent-declaration)
912 (verilog-auto-wiure): Rework for radio button selection of
913 auto-lineup selection of specification of auto lineup.
914 (verilog-beg-of-statement-1): Redesign to support proper operation
915 in additional code, based on testing with auto-lineup.
916 (verilog-calculate-indent, assignments & declarations)
917 (verilog-backward-token): Enhance to support auto-lineup of
918 assignments & declarations.
919 (verilog-in-directive-p, verilog-at-struct-p): New function for
920 easy test of whether we are.
921 (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
922 to support safe execution at almost anyline.
923 (verilog-calc-1): Properly support indenting deep inside generate
924 blocks.
925 (verilog-init-font) Remove definition & use of verilog-init-font,
926 as it is redundant with font-lock-defaults.
927 (verilog-mode): Alter the definition of verilog-font-lock-defualts
928 to avoid circular calls if syntax-ppss is a function (as is the
929 case now in 22.x GNU Emacs) as that function would sometimes call
930 itself, leading to (nearly) infinite recursion
931 (verilog-ovm-begin-re, verilog-ovm-end-re)
932 (verilog-ovm-statement-re, verilog-leap-to-head)
933 (verilog-backward-token): Add support for OVM macros. Some are
934 complete statements, and others open and close scopes like begin
935 and end.
936 (verilog-defun-level-not-generate-re, verilog-defun-level-re)
937 (verilog-defun-level-generate-only-re): Really fix the defun-list
938 compilation issue
939 (verilog-calc-1) (verilog-beg-of-statement): Enhance support for
940 coverpoint, constraint and cross statements
941 (verilog-defun-level-list, verilog-generate-defun-level-list)
942 (verilog-all-defun-level-list): Redo these specifications - it is
943 too hard to support eval-when compile aggregation of lists also
944 built at when-compile time.
945 (verilog-defun-level-list): Place defconsts of variables used in
946 building regular expressions which are built in eval-when-compile
947 bodies in the same eval-when-compile body to facilitate compile
948 without load.
949 (verilog-beg-block-re-ordered): Support indenting
950 virtual/protected tasks and functions.
951 (verilog-defun-level-list,verilog-in-generate-region-p)
952 (verilog-backward-ws&directives, verilog-calc-1): Speed up
953 indentation of some module items (generate items).
954 (verilog-forward-sexp, verilog-leap-to-head): Support stepping
955 across virtual/protected tasks and functions.
956
957 2009-06-28 Wilson Snyder <wsnyder@wsnyder.org>
958
959 * verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
960 Allow sorting AUTOARG lists. Suggested by Andrea Fedeli.
961 (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
962 in concatenations. Reported by Yishay Belkind.
963 (verilog-auto-ascii-enum): Support one-hot state machines in
964 AUTOASCIIENUM. Suggested by Lloyd Gomez.
965 (verilog-auto-inst, verilog-auto-inst-port): Include interface
966 modport in AUTOINST and add vl-modport for users. Reported by
967 David Rogoff.
968 (verilog-auto-inout-module, verilog-auto-inst)
969 (verilog-decls-get-interfaces, verilog-insert-definition)
970 (verilog-insert-one-definition, verilog-read-decls)
971 (verilog-read-sub-decls, verilog-read-sub-decls-sig)
972 (verilog-sig-modport, verilog-signals-combine-bus)
973 (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
974 interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
975 Suggested by David Rogoff.
976 (verilog-repair-open-comma): Fix non-insertion of comma when
977 `DEFINE occurs in V2K argument list. Reported by Lane Brooks.
978 (verilog-make-width-expression): Simplify [A-1:0] expression
979 widths to just {A{1'b0}}.
980 (verilog-mode): Cleanup checkdoc warnings.
981 (verilog-auto-inout-module, verilog-signals-matching-dir-re):
982 Add third optional regexp to AUTOINOUTMODULE to allow selecting only
983 inputs/outputs or data type. Suggested by Vasu Kandadi.
984 (next-error-last-buffer): Fix byte-compiler warning.
985 (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
986 (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
987 or shell command text during AUTO expansion. Suggested by Tad Truex.
988 (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
989 (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
990 Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
991 in AUTOINOUT. Reported by Matthew Lovell.
992 (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
993 causing use of <= assignments. Reported by Alex Reed.
994 (verilog-read-decls): Fix triand, trior, wand, wor to be
995 recognized by AUTOWIRE. Reported by Spencer Isaacson.
996 (verilog-extended-complete-re): Support import "DPI-C" functions.
997 (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
998 y[a+1:a+1]" to not include a in reset list. Reported by Dan Dever.
999 (verilog-insert-date, verilog-insert-year)
1000 (verilog-sk-header-tmpl): Fix verilog-header inserting error on
1001 Windows systems. Reported by Michael Potts.
1002 (verilog-read-module-name): Fix AUTOINST when the child module
1003 declaration's name is a tick define. Reported by Elliot Mednick.
1004 (verilog-read-decls): Fix V2K parameter bit subscripts getting
1005 passed to next parameter's definition. Reported by Bruce T.
1006 (verilog-read-decls): Fix detecting "parameter int" when using
1007 AUTOINSTPARAM. Reported by Bruce T.
1008 (verilog-goto-defun): Fix goto not finding modules unless first
1009 perform a verilog-auto expansion. Suggested by Lawrence Butcher.
1010 (verilog-mode): Expand -f flag arguments on entry to mode so
1011 verilog-goto-defun will work. Reported by Lawrence Butcher.
1012 (verilog-getopt): Expand environment variables in -f file
1013 arguments. Suggested by Lawrence Butcher.
1014 (verilog-set-define): Fix "Symbol's value as variable is void"
1015 when reading enumerations.
1016 (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
1017 Suggested by Stephen Peltan.
1018 (verilog-read-defines): Fix reading of enumerations in include
1019 files. Reported by Steve Peltan.
1020
1021 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
1022
1023 * files.el (trash-directory): Fix defcustom type.
1024
1025 2009-06-28 Juri Linkov <juri@jurta.org>
1026
1027 * help-fns.el (describe-function-1): Correctly locate adviced
1028 functions in hyperlink (Bug#2438).
1029
1030 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
1031
1032 * files.el (trash-directory): Change default to nil.
1033 (move-file-to-trash): If trash-directory is nil and
1034 system-move-file-to-trash is unbound, perform freedesktop-style
1035 trashing.
1036
1037 2009-06-28 David De La Harpe Golden <david@harpegolden.net>
1038
1039 * files.el (move-file-to-trash): Add freedesktop trash
1040 support (Bug#973).
1041
1042 2009-06-28 Glenn Morris <rgm@gnu.org>
1043
1044 * autorevert.el (global-auto-revert-non-file-buffers)
1045 (global-auto-revert-mode): Doc fixes.
1046
1047 2009-06-27 Johan Bockgård <bojohan@gnu.org>
1048
1049 * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
1050
1051 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
1052
1053 * faces.el (x-handle-named-frame-geometry): Ensure that we have
1054 opened an X connection before calling x-get-resource (Bug#3194).
1055
1056 * play/doctor.el: Remove reference to obsolete website.
1057 (make-doctor-variables): Correct grammar mistake (Bug#2633).
1058
1059 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
1060
1061 Remove find-file-not-found-hook VC method. (Bug#2757)
1062 * vc-hooks.el (vc-file-not-found-hook)
1063 (vc-default-find-file-not-found-hook): Remove functions.
1064 (find-file-not-found-functions): Do not add vc-file-not-found-hook.
1065 * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
1066 * vc.el:
1067 * vc-hg.el:
1068 * vc-git.el: Do not mention find-file-not-found-hook VC method.
1069
1070 2009-06-25 Agustín Martín <agustin.martin@hispalinux.es>
1071
1072 * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
1073 compatibility function for `looking-back'
1074
1075 * textmodes/flyspell.el (sgml-mode-flyspell-verify):
1076 Use `ispell-looking-back'
1077
1078 2009-06-24 Michael Albinus <michael.albinus@gmx.de>
1079
1080 * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
1081 rather than `filename'.
1082
1083 2009-06-23 Miles Bader <miles@gnu.org>
1084
1085 * face-remap.el (text-scale-set): New function.
1086
1087 2009-06-23 Glenn Morris <rgm@gnu.org>
1088
1089 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
1090
1091 * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
1092
1093 * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
1094
1095 * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
1096
1097 * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
1098 Simplify Persian conditionals.
1099
1100 * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
1101 variable `filename'.
1102
1103 * comint.el (comint-insert-input): Doc fix.
1104
1105 * Makefile.in (ELCFILES): Fix typo in previous change.
1106
1107 2009-06-23 Miles Bader <miles@gnu.org>
1108
1109 * cus-start.el: Add entry for `recenter-redisplay'.
1110
1111 2009-06-22 Dan Nicolaescu <dann@ics.uci.edu>
1112
1113 * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
1114 Add an optional argument for the backend, use it instead of
1115 calling vc-backend.
1116 (vc-mode-line): Add an optional argument for the backend.
1117 Pass the backend to vc-state and vc-working-revision. Move code for
1118 special handling for vc-state being a buffer to ...
1119
1120 * vc-rcs.el (vc-rcs-find-file-hook):
1121 * vc-sccs.el (vc-sccs-find-file-hook): ... here. New functions.
1122
1123 * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
1124 (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
1125 vc-stay-local-p and vc-mode-line calls.
1126
1127 * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
1128 (vc-cvs-diff, vc-cvs-annotate-command)
1129 (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
1130 (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
1131 vc-mode-line calls.
1132
1133 * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
1134 direct comparison.
1135 (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
1136 backend when calling vc-mode-line.
1137 (vc-register): Do not create a closure for calling the vc register
1138 function, call it directly.
1139
1140 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
1141
1142 * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
1143 to make it obvious item can be clicked.
1144
1145 * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
1146
1147 2009-06-23 Kenichi Handa <handa@m17n.org>
1148
1149 * language/korea-util.el (korean-key-bindings): Change the binding
1150 of F9 to hangul-to-hanja-conversion. Bind Hangul_Hanja to the
1151 same command.
1152
1153 2009-06-22 Michael Albinus <michael.albinus@gmx.de>
1154
1155 Sync with Tramp 2.1.16.
1156
1157 * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
1158
1159 * net/tramp.el (top): Require tramp-gvfs. Catch `tramp-loading',
1160 when a loading of a package fails. Completion function for rsync
1161 is `tramp-completion-function-alist-ssh'.
1162 (all): Replace all calls of `split-string' and
1163 `tramp-split-string' by `tramp-compat-split-string'.
1164 (tramp-default-method): Use `tramp-compat-process-running-p'.
1165 (tramp-default-proxies-alist): Allow also Lisp forms.
1166 (tramp-remote-path): Add choice "Private Directories".
1167 (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
1168 (tramp-domain-regexp): Allow also "-", "_" and ".".
1169 (tramp-end-of-output): Remove newlines, and add "$" at the end.
1170 (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
1171 (tramp-debug-message): Insert header line in debug buffer.
1172 (tramp-handle-directory-files-and-attributes-with-stat):
1173 Care about filenames with spaces, or starting with "-".
1174 (tramp-handle-dired-uncache): New defun.
1175 (tramp-handle-insert-directory): Don't flush the directory from
1176 cache, this is handled by `dired-uncache' now.
1177 (tramp-handle-insert-file-contents): Improve error handling.
1178 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1179 Quote `tramp-end-of-output'.
1180 (tramp-action-password): Improve trace message.
1181 (tramp-check-for-regexp): Both echoes must be present, before removing.
1182 (tramp-open-connection-setup-interactive-shell): Trace coding system.
1183 (tramp-compute-multi-hops): Eval cons cells of
1184 `tramp-default-proxies-alist'.
1185 (tramp-maybe-open-connection): Use the same command pattern for
1186 first hop and further hops.
1187 (tramp-wait-for-output): Remove handling of newlines.
1188 (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
1189 (tramp-split-string): Remove function. It is handled in
1190 tramp-compat now.
1191
1192 * net/tramp-cmds.el (tramp-bug):
1193 Recommend `tramp-cleanup-all-connections' in the bug mail.
1194
1195 * net/tramp-compat.el (tramp-compat-split-string)
1196 (tramp-compat-process-running-p): New defuns.
1197
1198 * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
1199 for `dired-uncache'.
1200
1201 * net/tramp-gvfs.el: New package.
1202
1203 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1204 Add handler for `dired-uncache'.
1205 (tramp-smb-handle-file-local-copy): Cleanup in case of error.
1206
1207 * net/trampver.el: Update release number. Make version check fit
1208 for SXEmacs 22.
1209
1210 2009-06-22 Jim Meyering <meyering@redhat.com>
1211
1212 Automatically handle .xz suffix (XZ-compressed files), too.
1213 * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
1214 XZ is the successor to LZMA: <http://tukaani.org/xz/>
1215
1216 2009-06-22 Dmitry Dzhus <dima@sphinx.net.ru>
1217 Nick Roberts <nickrob@snap.net.nz>
1218
1219 * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
1220 repository (http://sphinx.net.ru/hg/gdb-mi/).
1221
1222 2009-06-22 Glenn Morris <rgm@gnu.org>
1223
1224 * files.el (dir-locals-collect-mode-variables): Allow for any number of
1225 `mode' and `eval' entries. (Bug#3430)
1226
1227 * Makefile.in (ELCFILES): Add fadr.elc.
1228
1229 * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
1230 differing behavior of \n and ^ in strings. (Bug#3385)
1231
1232 * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
1233
1234 * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
1235 property.
1236 (lisp-indent-function): Make it a defcustom.
1237
1238 2009-06-21 Nick Roberts <nickrob@snap.net.nz>
1239
1240 * progmodes/gdb-ui.el: Replace with ...
1241 * progmodes/gdb-mi.el: ... this file.
1242 * progmodes/gud.el: Modify for gdb-mi.el.
1243
1244 2009-06-21 Dmitry Dzhus <dima@sphinx.net.ru>
1245
1246 * fadr.el: New file.
1247
1248 See ChangeLog.14 for earlier changes.
1249
1250 ;; Local Variables:
1251 ;; coding: utf-8
1252 ;; End:
1253
1254 Copyright (C) 2009 Free Software Foundation, Inc.
1255
1256 This file is part of GNU Emacs.
1257
1258 GNU Emacs is free software: you can redistribute it and/or modify
1259 it under the terms of the GNU General Public License as published by
1260 the Free Software Foundation, either version 3 of the License, or
1261 (at your option) any later version.
1262
1263 GNU Emacs is distributed in the hope that it will be useful,
1264 but WITHOUT ANY WARRANTY; without even the implied warranty of
1265 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1266 GNU General Public License for more details.
1267
1268 You should have received a copy of the GNU General Public License
1269 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1270
1271 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1