Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
21b15ee8
Commit
21b15ee8
authored
Dec 02, 2005
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(save-completions-file-name): Fix typo in last change.
parent
61322d72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
12 deletions
+13
-12
lisp/ChangeLog
lisp/ChangeLog
+11
-11
lisp/completion.el
lisp/completion.el
+2
-1
No files found.
lisp/ChangeLog
View file @
21b15ee8
2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
* completion.el (save-completions-file-name): Fix typo in last change.
2005-12-02 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* info.el: Move back/forward history to the beginning of the tool bar.
...
...
@@ -12,11 +16,9 @@
lack the definition.
(allout-mode): Move this variable above any uses, or byte
compilation will fail.
(allout-resolve-xref): Remove use of personal file-reference
function.
(allout-resolve-xref): Remove use of personal file-reference function.
(allout-toggle-current-subtree-encryption): Do the current (ie,
visible containing) topic, rather than nearest around point. Doc
fix.
visible containing) topic, rather than nearest around point. Doc fix.
(allout-toggle-subtree-encryption): New function, workhorse that
works on nearest topic containing point.
(allout-encrypt-string): Signal requirement for newer version of pgg.
...
...
@@ -28,21 +30,20 @@
2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
* textmodes/flyspell.el (flyspell-external-point-words):
Consider
a misspelling as found in the string search if: (a) misspelling
* textmodes/flyspell.el (flyspell-external-point-words):
Consider
a misspelling as found in the string search if: (a) misspelling
and found string lengths match, or (b) misspelling is found as
element in a boundary-chars separated longer string, or (c)
ispell-program-name is really ispell and misspelling is found as
part of a TeX string. After successful match move beginning of
search region to end of match. Warn about not found misspellings
once the process is done.
(flyspell-large-region) Do not set ispell-parser to tex if in TeX
mode.
(flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
2005-12-02 Nick Roberts <nickrob@snap.net.nz>
* progmodes/gud.el (gud-menu-map): Put gud-finish back on the
tool bar (removed inadvert
antly),
tool bar (removed inadvert
ently).
2005-12-02 Juri Linkov <juri@jurta.org>
...
...
@@ -56,8 +57,7 @@
2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
* simple.el (transient-mark-mode, line-number-mode)
(column-number-mode, size-indication-mode): Remove
`:require nil'.
(column-number-mode, size-indication-mode): Remove `:require nil'.
2005-12-01 Nick Roberts <nickrob@snap.net.nz>
...
...
lisp/completion.el
View file @
21b15ee8
...
...
@@ -302,7 +302,8 @@ See also `save-completions-retention-time'."
(
cond
((
file-readable-p
olddef
)
olddef
)
((
file-directory-p
(
convert-standard-filename
"~/.emacs.d/"
))
(
convert-standard-filename
(
expand-file-name
completions
"~/.emacs.d/"
)))
(
convert-standard-filename
(
expand-file-name
"completions"
"~/.emacs.d/"
)))
(
t
olddef
)))
"The filename to save completions to."
:type
'file
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment