summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* SQL Mode V2.2 - Added sql-connect and sql-connection-alistMichael Mauger2010-07-182-88/+293
|
* Do not set bookmark context for images (Bug#6650).Thierry Volpiatto2010-07-172-3/+8
| | | | | * lisp/image-mode.el (image-bookmark-make-record): Do not set context in an image (Bug#6650).
* Revert 2010-07-14 change to deactivate mark; minor cleanups.Chong Yidong2010-07-173-15/+25
| | | | | | | | | * mouse.el (mouse-drag-track): Use select-active-region. * simple.el (select-active-region): New function. (push-mark-command, set-mark, activate-mark) (handle-shift-selection): Use it. (deactivate-mark): Don't check for size of region.
* * net/tramp.el (tramp-get-ls-command-with-dired): Make test forMichael Albinus2010-07-172-2/+10
| | | | "--dired" stronger.
* Change x-select-enable-primary to nil.Chong Yidong2010-07-164-5/+15
| | | | | | | | * lisp/mouse.el (mouse-drag-copy-region): * lisp/simple.el (select-active-regions): Likewise. * lisp/term/x-win.el (x-select-enable-primary): Change default to nil. (x-select-enable-clipboard): Add :version keyword.
* lisp/mail/rmail.el: Update autoload checksum.Juanma Barranquero2010-07-171-1/+1
|
* Merge changes from emacs-23 branch.Chong Yidong2010-07-167-48/+99
|\
| * Fix bug #4451.Reiner Steib2010-07-162-1/+23
| | | | | | | | | | | | vc.el (vc-coding-system-inherit-eol): New defvar. (vc-coding-system-for-diff): Use it to decide whether to inherit from the file the EOL format for reading the diffs of that file.
| * mail/rmailmm.el (rmail-mime-save): Make the temp buffer unibyte,Eli Zaretskii2010-07-162-0/+9
| | | | | | | | | | | | so compressed attachments are not compressed again. See http://lists.gnu.org/archive/html/emacs-devel/2010-07/msg00599.html
| * * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127Jan D2010-07-142-2/+7
| | | | | | | | now that unicode is used (Bug#6594).
| * * simple.el (push-mark-command): Set selection for select-active-regions.Chong Yidong2010-07-142-0/+7
| |
| * cal-tex.el fixes for calendar-week-start-day != 0.Glenn Morris2010-07-103-41/+53
| | | | | | | | | | | | | | | | | | | | * calendar/calendar.el (calendar-week-end-day): New function. * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars. Respect calendar-week-start-day. (Bug#6606) (cal-tex-insert-day-names, cal-tex-insert-blank-days) (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day. (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and respect calendar-week-start-day.
| * Fix last fix.Chong Yidong2010-07-101-3/+2
| |
| * * simple.el (use-region-p): Doc fix (Bug#6607).Chong Yidong2010-07-102-3/+7
| |
* | * net/tramp.el (tramp-handle-shell-command): Don't use hard-wiredMichael Albinus2010-07-162-8/+21
| | | | | | | | | | | | "/bin/sh" but `tramp-remote-sh' from `tramp-methods'. (tramp-find-shell): Simplify setting connection property. (tramp-get-ls-command): Make test for "--color=never" stronger.
* | Correct my email address in the last update.Simon South2010-07-151-1/+1
| |
* | Merge fixes to indentation of case statements, variant parts in recordSimon South2010-07-152-6/+45
|\ \ | | | | | | | | | declarations.
| * | (delphi-previous-indent-of): Indent case blocks within recordSimon South2010-07-142-4/+35
| | | | | | | | | | | | declarations (i.e. variant parts) correctly.
| * | (delphi-token-at): Give newlines precedence over literal tokens whenSimon South2010-07-142-2/+10
| | | | | | | | | | | | | | | | | | parsing so newlines aren't "absorbed" by single-line comments. Corrects the indentation of case blocks that have a comment on the first line.
* | | Make gnus-summary-bookmark-make-record work for Emacs 23 as well.Katsumi Yamaoka2010-07-152-6/+14
|/ / | | | | | | | | | | 2010-07-15 Katsumi Yamaoka <yamaoka@jpl.org> * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for Emacs 23 as well.
* | * lisp/bookmark.el (bookmark-load-hook): Fix doc string as suggestedKarl Fogel2010-07-142-1/+6
| | | | | | | | by Drew Adams (Bug#5504).
* | Change clipboard/primary selection to X application standards.Chong Yidong2010-07-145-26/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/menu-bar.el (menu-bar-enable-clipboard): Don't overwrite Cut/Copy/Paste menu bar items. * lisp/mouse.el: Bind mouse-2 to mouse-yank-primary. (mouse-drag-copy-region): Default to nil. * lisp/simple.el (select-active-regions): Default to t. (push-mark-command): Don't overwrite primary with empty string. * lisp/term/x-win.el (x-select-enable-clipboard): Default to t. (x-initialize-window-system): Don't overwrite Paste menu item.
* | Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).Thierry Volpiatto2010-07-144-23/+49
| | | | | | | | | | | | | | | | | | * lisp/bookmark.el (bookmark-set): Don't set `bookmark-yank-point' and `bookmark-current-buffer' if they have been already set in another buffer (e.g gnus-art). * lisp/gnus/gnus-sum.el (gnus-summary-bookmark-make-record): Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
* | Allow bookmarks to be set from Gnus Article buffers (Bug #5975).Karl Fogel2010-07-143-13/+42
| | | | | | | | | | | | | | | | | | | | | | | | Patch applied (with minor tweaks) by Karl Fogel. Note this leaves C-w still not working correctly from Article buffers; Thierry's patch to fix that will be applied after this. * lisp/gnus/gnus-art.el (bookmark-make-record-function): New local variable. * lisp/gnus/gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from article buffer. (gnus-summary-bookmark-jump): Maybe jump to article buffer.
* | Preparation for setting bookmarks in Gnus article buffers (Bug#5975).Karl Fogel2010-07-149-30/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/bookmark.el (bookmark-make-record-default): Allow unneeded information to be omitted from the record. Adjust declarations and calls: * lisp/info.el (bookmark-make-record-default): Adjust declaration. (Info-bookmark-make-record): Adjust call. * lisp/woman.el (bookmark-make-record-default): Adjust declaration. (woman-bookmark-make-record): Adjust call. * lisp/man.el (bookmark-make-record-default): Adjust declaration. (Man-bookmark-make-record): Adjust call. * lisp/image-mode.el (bookmark-make-record-default): Adjust declaration. * lisp/doc-view.el (bookmark-make-record-default): Adjust declaration. * lisp/gnus/gnus-sum.el (bookmark-make-record-default): Adjust declaration.
* | Fix attribution in a ChangeLog entry.Karl Fogel2010-07-141-2/+2
| |
* | * lisp/bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.Karl Fogel2010-07-132-9/+16
| | | | | | | | | | | | This is also from Thierry Volpiatto's patch in bug #6444. However, because it was extraneous to the functional change in that patch, and causes a re-indendation, I am committing it separately.
* | [[[Karl Fogel2010-07-132-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/bookmark.el (bookmark-bmenu-switch-other-window, bookmark-bmenu-other-window, bookmark-bmenu-2-window): Don't override ambient binding of `bookmark-automatically-show-annotations'. (Bug #6515) ]]] === modified file 'lisp/bookmark.el' --- lisp/bookmark.el 2010-04-14 15:07:53 +0000 +++ lisp/bookmark.el 2010-06-27 03:40:14 +0000 @@ -1860,8 +1860,7 @@ (pop-up-windows t)) (delete-other-windows) (switch-to-buffer (other-buffer)) - (let ((bookmark-automatically-show-annotations nil)) ;FIXME: needed? - (bookmark--jump-via bmrk 'pop-to-buffer)) + (bookmark--jump-via bmrk 'pop-to-buffer) (bury-buffer menu))) @@ -1875,8 +1874,7 @@ "Select this line's bookmark in other window, leaving bookmark menu visible." (interactive) (let ((bookmark (bookmark-bmenu-bookmark))) - (let ((bookmark-automatically-show-annotations t)) ;FIXME: needed? - (bookmark--jump-via bookmark 'switch-to-buffer-other-window)))) + (bookmark--jump-via bookmark 'switch-to-buffer-other-window))) (defun bookmark-bmenu-switch-other-window () @@ -1887,8 +1885,7 @@ (pop-up-windows t) same-window-buffer-names same-window-regexps) - (let ((bookmark-automatically-show-annotations t)) ;FIXME: needed? - (bookmark--jump-via bookmark 'display-buffer)))) + (bookmark--jump-via bookmark 'display-buffer))) (defun bookmark-bmenu-other-window-with-mouse (event) "Select bookmark at the mouse pointer in other window, leaving bookmark menu visible." === modified file 'lisp/saveplace.el' --- lisp/saveplace.el 2010-01-13 08:35:10 +0000 +++ lisp/saveplace.el 2010-02-07 23:14:52 +0000 @@ -213,7 +213,7 @@ (symbol-name coding-system-for-write))) (let ((print-length nil) (print-level nil)) - (print save-place-alist (current-buffer))) + (pp save-place-alist (current-buffer))) (let ((version-control (cond ((null save-place-version-control) nil)
* | * lisp/frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).Chong Yidong2010-07-132-2/+6
| |
* | term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew Dempsky; ↵Adrian Robert2010-07-133-4/+13
| | | | | | | | bug#5084). Remove incorrect binding for S-tab. (ns-alternatives-map): Change S-tab binding to backtab (bug#6616). * simple.el (normal-erase-is-backspace-setup-frame): Set mode on under ns.
* | * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs. (Bug#5806)Andreas Schwab2010-07-122-5/+8
| |
* | * language/tv-util.el (tai-viet-re): Remove format.Andreas Schwab2010-07-122-2/+5
| |
* | Improve Hebrew rendering.Kenichi Handa2010-07-122-22/+164
| |
* | * mouse.el (mouse-drag-track): Handle select-active-regions (Bug#6612).Chong Yidong2010-07-112-4/+21
| |
* | * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not passMichael Albinus2010-07-112-5/+13
| | | | | | | | empty argument to gvfs-copy.
* | Add compilation regexps for cucumber and ruby.Aleksei Gusev2010-07-103-2/+18
| | | | | | | | | | * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist): Add regexps for cucumber and ruby.
* | Merge changes from emacs-23 branch.Chong Yidong2010-07-1030-106/+296
|\|
| * Add some font-locking for Python 2.7.Christoph Scholtes2010-07-062-6/+18
| | | | | | | | | | | | * lisp/progmodes/python.el (python-font-lock-keywords): Add Python 2.7 builtins (BufferError, BytesWarning, WindowsError; callables bin, bytearray, bytes, format, memoryview, next, print; __package__).
| * Minor zone.el fix.Glenn Morris2010-07-062-4/+11
| | | | | | | | * play/zone.el (zone-fall-through-ws): Fix next-line -> forward-line fallout.
| * Minor fix to describe-key, and a docstring.Chong Yidong2010-07-063-2/+10
| | | | | | | | | | | | * help.el (describe-key): Print up-event using key-description. * mouse.el (mouse-appearance-menu): Add docstring.
| * * net/zeroconf.el (zeroconf-resolve-service)Michael Albinus2010-07-032-7/+10
| | | | | | | | | | | | (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'. (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
| * * net/zeroconf.el (zeroconf-service-remove-hook): New defun.Michael Albinus2010-07-032-0/+21
| |
| * Avoid displaying files with a nil state in vc-dir.Dan Nicolaescu2010-06-302-16/+28
| | | | | | | | | | | | | | * lisp/vc-dir.el (vc-dir-update): Obey the noinsert argument in all cases that cause insertion. (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files with a nil state.
| * * xml.el (xml-parse-region): Avoid infloop (Bug#5281).Chong Yidong2010-06-302-12/+18
| |
| * lisp/ChangeLog: Remove "(tiny change)" note.Juanma Barranquero2010-06-291-3/+2
| |
| * emacs-lisp/rx.el (rx): Doc fix. (Bug#6537)Leo Liu2010-06-292-3/+4
| |
| * Font lock fix for batch mode (Bug#5719).Chong Yidong2010-06-272-4/+8
| | | | | | | | | | * generic-x.el (bat-generic-mode): Fix regexp for command line switches (Bug#5719).
| * Minor fix for htmlfontify.el (Bug#6239).Chong Yidong2010-06-272-1/+6
| | | | | | | | | | * htmlfontify.el (hfy-face-attr-for-class): Use `append' instead of `nconc' (Bug#6239).
| * Remove unnecessary let-bindings in bookmark.el (Bug#6515)Chong Yidong2010-06-272-6/+10
| | | | | | | | | | | | | | * bookmark.el (bookmark-bmenu-2-window) (bookmark-bmenu-other-window) (bookmark-bmenu-other-window-with-mouse): Remove unnecessary bindings of bookmark-automatically-show-annotations (Bug#6515).
| * Fix typos in some Keywords comments.Glenn Morris2010-06-263-5/+5
| |