Word 2013 shortcuts to accept or reject spell check changes do not work
Although some letters in the options are underlined, they do not work!
There is one way round this.
Add this macro to Normal.dot and assign it the F7 shortcut (or to a different one like Alt+S if you still want to be able to access the standard method). It will replace the pane spell checking procedure with a dialog box where change, ignore, etc, can be accessed by pressing Alt+C, Alt+I, etc.
Sub SpellCheck()
On Error GoTo errhdl
Dialogs(wdDialogToolsSpellingAndGrammar).Execute
Exit Sub
errhdl:
If Err.Number <> 4198 Then
MsgBox "Error " & Err.Number & vbCr & Err.Description
End If
End Sub