summaryrefslogtreecommitdiff
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* (shell-dynamic-complete-filename): New fun.Chong Yidong2008-04-031-2/+14
| | | | (shell-dynamic-complete-functions): Use it.
* * shell.el (shell-dynamic-complete-filename): New fun.Chong Yidong2008-04-031-0/+3
| | | | (shell-dynamic-complete-functions): Use it.
* (bahai-holidays): Re-order.Glenn Morris2008-04-031-5/+5
|
* (calendar-holidays): Doc fix.Glenn Morris2008-04-032-7/+8
|
* (calendar-holiday-list): Fix previous change.Glenn Morris2008-04-032-46/+71
| | | | | | (holiday-filter-visible-calendar): Doc fix. Use mapcar. (holiday-easter-etc): Fix nesting of result. Tweak holiday order. Use calendar-date-is-visible-p, not holiday-filter-visible-calendar.
* *** empty log message ***Kenichi Handa2008-04-031-0/+3
|
* (hebrew-holidays-1, hebrew-holidays-2, hebrew-holidays-3, hebrew-holidays-4):Glenn Morris2008-04-031-99/+42
| | | | | | | | | Make obsolete. (hebrew-holidays-2): Just use holiday-hanukkah now it respects all-hebrew-calendar-holidays. (hebrew-holidays, christian-holidays, islamic-holidays, bahai-holidays): Simplify using new functions. (generate-calendar-window): Use bound-and-true-p.
* (holiday-islamic-new-year): New function.Glenn Morris2008-04-031-0/+17
|
* (create-fontset-from-x-resource):Kenichi Handa2008-04-031-1/+3
| | | | Handle the error of X resource more gracefully.
* (holiday-rosh-hashanah-etc, holiday-passover-etc, holiday-hanukkah):Glenn Morris2008-04-031-175/+228
| | | | | | | Doc fix. Add optional argument. Simplify. (holiday-tisha-b-av-etc): Use memq rather than unless. (holiday-julian): Autoload it. (holiday-hebrew-misc): New function.
* (holiday-fixed): Autoload it.Glenn Morris2008-04-031-0/+27
| | | | (holiday-bahai-new-year, holiday-bahai-ridvan): New functions.
* (describe-variable): Undo 2008-02-25 change.Chong Yidong2008-04-031-26/+5
|
* * help-fns.el (describe-variable): Undo 2008-02-25 change.Chong Yidong2008-04-031-0/+4
|
* (latin1-display): Don't useKenichi Handa2008-04-032-17/+27
| | | | | | | | | | make-char. Fix the argument to set-char-table-range. (latin1-display-identities): Don't use make-char. (latin1-display-reset): Use map-charset-chars instead of directly calling standard-display-default. (latin1-display-check-font): Don't use make-char. (latin1-display-setup): Likewise. (latin1-display-ucs-per-lynx): Likewise.
* (timer): Define as a defstruct, so we can name the fields, to make theStefan Monnier2008-04-032-120/+109
| | | | | | | | | | | code clearer. Rewrite all `aset' and `aref' using the defined accessors. (timer--time): New pseudo-field. (timer-set-time, timer-set-idle-time, timer-inc-time) (timer-set-time-with-usecs, with-timeout-suspend): Use it. (timer--time-less-p): New function. (timer--activate): New function, extracted from timer-activate. (timer-activate-when-idle, timer-activate): Use it. (cancel-function-timers): Use dolist.
* *** empty log message ***Glenn Morris2008-04-031-0/+10
|
* (diary-mail-addr): Use bound-and-true-p.Glenn Morris2008-04-031-1/+1
|
* (tramp-drop-volume-letter): Move definition before use.Glenn Morris2008-04-031-15/+15
|
* (c-beginning-of-defun, c-end-of-defun): Remove declarations; no longer used.Glenn Morris2008-04-031-2/+2
| | | | (c-cpp-define-name, c-defun-name): Declare as functions.
* (vc-mtn-command): Avoid localization of messages.Stefan Monnier2008-04-032-1/+6
|
* (vc-bzr-checkout): Simplify.Stefan Monnier2008-04-032-18/+13
|
* (image-mode-fit-frame): New command.Stefan Monnier2008-04-032-0/+27
|
* (beginning-of-buffer, end-of-buffer, goto-line, undo)Stefan Monnier2008-04-032-22/+24
| | | | | (copy-region-as-kill, kill-ring-save, use-region-p, mark-word) (keyboard-escape-quit): Check region-active-p i.s.o transient-mark-mode.
* Regenerate.Juanma Barranquero2008-04-031-1/+1
|
* Fix comment typo.Vinicius Jose Latorre2008-04-021-1/+1
|
* (c-defun-name, c-cpp-define-name): New optimised functions to get theAlan Mackenzie2008-04-021-0/+75
| | | | name of the current defun/macro.
* (add-log-current-defun): Move the functionality which gets the currentAlan Mackenzie2008-04-021-160/+3
| | | | function name for C like modes to cc-cmds.el, thus optimising for speed.
* *** empty log message ***Alan Mackenzie2008-04-021-0/+9
|
* * simple.el (deactivate-mark): When the mark is temporarilyChong Yidong2008-04-021-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | active, restore the original value of transient-mark-mode. (set-mark-command): First deactivate the mark if was temporarily active. (exchange-point-and-mark): Reactivate the mark if it was temporarily active. (handle-shift-selection): New fun. (transient-mark-mode): Move var documentation here from buffer.c. (next-line, previous-line, backward-word, move-end-of-line) (move-beginning-of-line, forward-to-indentation) (backward-to-indentation, back-to-indentation) (beginning-of-buffer, end-of-buffer): Add ^ interactive spec. * mouse.el (mouse-set-region-1): Save the old value of transient-mark-mode. (mouse-drag-track): Ignore the now-obsolete value `identity' for transient-mark-mode. * textmodes/paragraphs.el (forward-paragraph) (backward-paragraph, forward-sentence, backward-sentence): Add ^ interactive spec. * emulation/cua-base.el (cua-mode): Turn off shift-select-mode.
* (cua-mode): Turn off shift-select-mode.Chong Yidong2008-04-021-1/+4
|
* (forward-paragraph, backward-paragraph, forward-sentence,Chong Yidong2008-04-021-4/+4
| | | | backward-sentence): Add ^ interactive spec.
* (mouse-set-region-1): Save the old value of transient-mark-mode.Chong Yidong2008-04-021-7/+5
| | | | | (mouse-drag-track): Ignore the now-obsolete value `identity' for transient-mark-mode.
* (deactivate-mark): When the mark is temporarilyChong Yidong2008-04-021-25/+81
| | | | | | | | | | | | | | active, restore the original value of transient-mark-mode. (set-mark-command): First deactivate the mark if was temporarily active. (exchange-point-and-mark): Reactivate the mark if it was temporarily active. (handle-shift-selection): New fun. (transient-mark-mode): Move var documentation here from buffer.c. (next-line, previous-line, backward-word, move-end-of-line) (move-beginning-of-line, forward-to-indentation) (backward-to-indentation, back-to-indentation) (beginning-of-buffer, end-of-buffer): Add ^ interactive spec.
* * net/tramp.el (tramp-make-tramp-temp-file): UseMichael Albinus2008-04-022-2/+8
| | | | `tramp-drop-volume-letter' for the local file name part.
* (sh-mode-map): Rename the menu. Add :help.Dan Nicolaescu2008-04-022-13/+72
| | | | Add menu entries corresponding to all the key bindings.
* * emacs-lisp/debug.el (debugger-mode-map):Dan Nicolaescu2008-04-022-36/+128
| | | | | | * textmodes/conf-mode.el (conf-mode-map): Add a menu. (conf-align-assignments): Only work on the region if it is active. (conf-quote-normal): Use when instead of if. Remove redundant test.
* (emacs-lisp-mode-map): Add menu entriesDan Nicolaescu2008-04-022-1/+24
| | | | for tracing and re-builder.
* Whitespace only.Glenn Morris2008-04-022-43/+43
|
* (appt-disp-window-function): Doc fix.Glenn Morris2008-04-022-156/+157
| | | | | | | | | (appt-display-message): Move beep before display. (appt-check): Make interactive. Reduce the number of lets. Use string-equal to compare mode-line strings. (appt-disp-window): Pluralize "minute" as needed. Make appt buffer read-only. (appt-select-lowest-window, appt-make-list): Reduce the number of lets. (appt-delete): Simplify.
* (diary-entry-marker, calendar-today-marker, calendar-holiday-marker)Glenn Morris2008-04-022-57/+89
| | | | | | | | | (mark-visible-calendar-date): Check for font-lock-mode before using faces. (hebrew-holidays-3, generate-calendar-month) (calendar-gregorian-from-absolute): Reduce the number of lets. (hebrew-holidays-4, generate-calendar-window): Simplify. (calendar-for-loop): Make obsolete. (calendar-nth-named-day): Doc fix.
* (fancy-diary-display): Check for font-lock-mode before using faces.Glenn Morris2008-04-021-167/+159
| | | | | | | | | (diary-list-entries, fancy-diary-display) (print-diary-entries, mark-sexp-diary-entries, calendar-mark-complex) (calendar-mark-1, list-sexp-diary-entries, diary-remind): Reduce the number of lets. (mark-sexp-diary-entries, calendar-mark-complex): Expand calendar-for-loops.
* (calendar-time-zone-daylight-rules): Simplify.Glenn Morris2008-04-021-43/+35
|
* (list-yahrzeit-dates): Expand calendar-for-loop call.Glenn Morris2008-04-021-4/+6
|
* (cal-tex-insert-blank-days-at-end, cal-tex-last-blank-p)Glenn Morris2008-04-021-29/+32
| | | | (cal-tex-daily-page): Expand calendar-for-loops.
* (holiday-chinese-new-year): Use a single let.Glenn Morris2008-04-021-11/+10
|
* (find-dired-filter): Align columns by padding file sizes and linkChong Yidong2008-04-011-28/+41
| | | | numbers.
* * find-dired.el (find-dired-filter): Align columns by padding fileChong Yidong2008-04-011-0/+10
| | | | sizes and link numbers.
* Fix typos.Juanma Barranquero2008-04-011-141/+139
|
* (script-list): Add phonetic script, covering IPA (previously Latin),Jason Rumney2008-04-012-1/+15
| | | | | Phonetic Extensions and Phonetic Extensions Supplement (both previously unassigned).
* (setup-default-fontset): Use unicode fonts that cover bopomofoJason Rumney2008-04-011-2/+8
| | | | | script for bopomofo. Likewise for braille and mathematical. Use unicode scripts that cover the phonetic "script" for IPA.