Skip to content

Commit

Permalink
fix missing eldoc function
Browse files Browse the repository at this point in the history
  • Loading branch information
hlolli committed Jul 17, 2017
1 parent 9c96406 commit e3fbb1f
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog
## [0.1.1]

### Bug fixes
- Csound'd eldoc function was missing from the major-mode function.
4 changes: 2 additions & 2 deletions csound-eldoc.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -65,7 +65,7 @@
(let ((result nil)
(opdoce nil)
(last-open-paren (save-excursion (search-backward "(" (line-beginning-position) t 1)))
(last-close-paren (save-excursion (search-backward ")" (line-beginning-position) t 1))))
(last-close-paren (save-excursion (search-backward ")" (line-beginning-position) t 1))))
;; Functional syntax lookup
(when (and last-open-paren
(> last-open-paren
Expand Down
2 changes: 1 addition & 1 deletion csound-font-lock.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion csound-indentation.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down
4 changes: 2 additions & 2 deletions csound-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -179,7 +179,7 @@
prog-mode "Csound Mode"
"A major mode for interacting and coding Csound"
:syntax-table csound-mode-syntax-table

(setq-local eldoc-documentation-function 'csound-eldoc-function)
(setq-local comment-start ";; ")
(setq-local comment-end "")
(setq-local indent-line-function 'csound-indentation-line)
Expand Down
2 changes: 1 addition & 1 deletion csound-opcodes.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion csound-repl-interaction.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion csound-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))


Expand Down
2 changes: 1 addition & 1 deletion csound-score.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion csound-skeleton.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion csound-util.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;; Copyright (C) 2017 Hlöðver Sigurðsson

;; Author: Hlöðver Sigurðsson <[email protected]>
;; Version: 0.1
;; Version: 0.1.1
;; Package-Requires: ((emacs "25") (shut-up "0.3.2") (multi "2.0.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 2 additions & 0 deletions dev-script/xml-to-emacsdb.clj
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,5 @@
;; ((:content ((:content ((:content parsed-docs) 0)) 5)) 1)


;; DANGEROUS version bump function
;; find ./ -type f -exec sed -i -e 's/;; Version: 0\.1/;; Version: 0.1.1/g' {} \;

0 comments on commit e3fbb1f

Please sign in to comment.